Skip to content

Commit 65264b6

Browse files
committed
fix typos in /examples
1 parent cef3d53 commit 65264b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/basic/lifecycle_example.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class FinalResult(BaseModel):
7979

8080
start_agent = Agent(
8181
name="Start Agent",
82-
instructions="Generate a random number. If it's even, stop. If it's odd, hand off to the multipler agent.",
82+
instructions="Generate a random number. If it's even, stop. If it's odd, hand off to the multiplier agent.",
8383
tools=[random_number],
8484
output_type=FinalResult,
8585
handoffs=[multiply_agent],

examples/research_bot/agents/search_agent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
INSTRUCTIONS = (
55
"You are a research assistant. Given a search term, you search the web for that term and"
66
"produce a concise summary of the results. The summary must 2-3 paragraphs and less than 300"
7-
"words. Capture the main points. Write succintly, no need to have complete sentences or good"
7+
"words. Capture the main points. Write succinctly, no need to have complete sentences or good"
88
"grammar. This will be consumed by someone synthesizing a report, so its vital you capture the"
99
"essence and ignore any fluff. Do not include any additional commentary other than the summary"
1010
"itself."

0 commit comments

Comments
 (0)