[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 = [
|
shoe_conversation = [
|
||||||
"SalesBot: Hi, I'm Allbirds Assistant! How can I help you today?",
|
"SalesBot: Hi, I'm Allbirds Assistant! How can I help you today?",
|
||||||
"John: Hi, I'm looking for a new pair of shoes.",
|
"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",
|
"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
|
"""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.""",
|
- Dark Grey (Medium Grey Sole)? They use the SuperLight Foam technology.""",
|
||||||
|
|
|
||||||
|
|
@ -244,7 +244,7 @@ class TestAsyncErrorHandling:
|
||||||
async def test_timeout_recovery(self):
|
async def test_timeout_recovery(self):
|
||||||
"""Test recovery from operation timeouts."""
|
"""Test recovery from operation timeouts."""
|
||||||
async with graphiti_test_client() as (session, group_id):
|
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
|
large_content = 'x' * 1000000 # 1MB of data
|
||||||
|
|
||||||
with contextlib.suppress(asyncio.TimeoutError):
|
with contextlib.suppress(asyncio.TimeoutError):
|
||||||
|
|
|
||||||
|
|
@ -464,7 +464,7 @@ class TestErrorHandling:
|
||||||
async def test_timeout_handling(self):
|
async def test_timeout_handling(self):
|
||||||
"""Test timeout handling for long operations."""
|
"""Test timeout handling for long operations."""
|
||||||
async with GraphitiTestClient() as client:
|
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
|
large_text = 'Large document content. ' * 10000
|
||||||
|
|
||||||
result, metric = await client.call_tool_with_metrics(
|
result, metric = await client.call_tool_with_metrics(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue