[Doc]: fixing typos in various files
This commit is contained in:
parent
90d7757c17
commit
85b0e1bbac
3 changed files with 3 additions and 3 deletions
|
|
@ -60,7 +60,7 @@ def setup_logging():
|
|||
shoe_conversation = [
|
||||
"SalesBot: Hi, I'm Allbirds Assistant! How can I help you today?",
|
||||
"John: Hi, I'm looking for a new pair of shoes.",
|
||||
'SalesBot: Of course! What kinde of material are you looking for?',
|
||||
'SalesBot: Of course! What kind of material are you looking for?',
|
||||
"John: I'm looking for shoes made out of wool",
|
||||
"""SalesBot: We have just what you are looking for, how do you like our Men's SuperLight Wool Runners
|
||||
- Dark Grey (Medium Grey Sole)? They use the SuperLight Foam technology.""",
|
||||
|
|
|
|||
|
|
@ -244,7 +244,7 @@ class TestAsyncErrorHandling:
|
|||
async def test_timeout_recovery(self):
|
||||
"""Test recovery from operation timeouts."""
|
||||
async with graphiti_test_client() as (session, group_id):
|
||||
# Create a very large episode that might timeout
|
||||
# Create a very large episode that might time out
|
||||
large_content = 'x' * 1000000 # 1MB of data
|
||||
|
||||
with contextlib.suppress(asyncio.TimeoutError):
|
||||
|
|
|
|||
|
|
@ -464,7 +464,7 @@ class TestErrorHandling:
|
|||
async def test_timeout_handling(self):
|
||||
"""Test timeout handling for long operations."""
|
||||
async with GraphitiTestClient() as client:
|
||||
# Simulate a very large episode that might timeout
|
||||
# Simulate a very large episode that might time out
|
||||
large_text = 'Large document content. ' * 10000
|
||||
|
||||
result, metric = await client.call_tool_with_metrics(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue