Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Typos #258

Merged
merged 4 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/basic/lifecycle_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class FinalResult(BaseModel):

start_agent = Agent(
name="Start Agent",
instructions="Generate a random number. If it's even, stop. If it's odd, hand off to the multipler agent.",
instructions="Generate a random number. If it's even, stop. If it's odd, hand off to the multiplier agent.",
tools=[random_number],
output_type=FinalResult,
handoffs=[multiply_agent],
Expand Down
2 changes: 1 addition & 1 deletion examples/research_bot/agents/search_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
INSTRUCTIONS = (
"You are a research assistant. Given a search term, you search the web for that term and"
"produce a concise summary of the results. The summary must 2-3 paragraphs and less than 300"
"words. Capture the main points. Write succintly, no need to have complete sentences or good"
"words. Capture the main points. Write succinctly, no need to have complete sentences or good"
"grammar. This will be consumed by someone synthesizing a report, so its vital you capture the"
"essence and ignore any fluff. Do not include any additional commentary other than the summary"
"itself."
Expand Down
2 changes: 1 addition & 1 deletion src/agents/models/openai_chatcompletions.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ def extract_all_content(
elif isinstance(c, dict) and c.get("type") == "input_file":
raise UserError(f"File uploads are not supported for chat completions {c}")
else:
raise UserError(f"Unknonw content: {c}")
raise UserError(f"Unknown content: {c}")
return out

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion src/agents/models/openai_responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async def get_response(
)

if _debug.DONT_LOG_MODEL_DATA:
logger.debug("LLM responsed")
logger.debug("LLM responded")
else:
logger.debug(
"LLM resp:\n"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_agent_runner_streamed.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ async def test_streaming_events():
total_expected_item_count = sum(expected_item_type_map.values())

assert event_counts["run_item_stream_event"] == total_expected_item_count, (
f"Expectd {total_expected_item_count} events, got {event_counts['run_item_stream_event']}"
f"Expected {total_expected_item_count} events, got {event_counts['run_item_stream_event']}"
f"Expected events were: {expected_item_type_map}, got {event_counts}"
)

Expand Down
4 changes: 2 additions & 2 deletions tests/test_global_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class Foo(TypedDict):


@pytest.mark.asyncio
async def test_structed_output_non_streamed_agent_hooks():
async def test_structured_output_non_streamed_agent_hooks():
hooks = RunHooksForTests()
model = FakeModel()
agent_1 = Agent(name="test_1", model=model)
Expand Down Expand Up @@ -296,7 +296,7 @@ async def test_structed_output_non_streamed_agent_hooks():


@pytest.mark.asyncio
async def test_structed_output_streamed_agent_hooks():
async def test_structured_output_streamed_agent_hooks():
hooks = RunHooksForTests()
model = FakeModel()
agent_1 = Agent(name="test_1", model=model)
Expand Down