Skip to content

Commit b6c9572

Browse files
authored
Merge pull request #35 from AliYmn/28
docs: Fix typos in documentation files
2 parents a4b72c3 + fce4872 commit b6c9572

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ When you call `Runner.run()`, we run a loop until we get a final output.
118118
2. The LLM returns a response, which may include tool calls.
119119
3. If the response has a final output (see below for the more on this), we return it and end the loop.
120120
4. If the response has a handoff, we set the agent to the new agent and go back to step 1.
121-
5. We process the tool calls (if any) and append the tool responses messsages. Then we go to step 1.
121+
5. We process the tool calls (if any) and append the tool responses messages. Then we go to step 1.
122122

123123
There is a `max_turns` parameter that you can use to limit the number of times the loop executes.
124124

docs/results.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The [`new_items`][agents.result.RunResultBase.new_items] property contains the n
3232

3333
- [`MessageOutputItem`][agents.items.MessageOutputItem] indicates a message from the LLM. The raw item is the message generated.
3434
- [`HandoffCallItem`][agents.items.HandoffCallItem] indicates that the LLM called the handoff tool. The raw item is the tool call item from the LLM.
35-
- [`HandoffOutputItem`][agents.items.HandoffOutputItem] indicates that a handoff occured. The raw item is the tool response to the handoff tool call. You can also access the source/target agents from the item.
35+
- [`HandoffOutputItem`][agents.items.HandoffOutputItem] indicates that a handoff occurred. The raw item is the tool response to the handoff tool call. You can also access the source/target agents from the item.
3636
- [`ToolCallItem`][agents.items.ToolCallItem] indicates that the LLM invoked a tool.
3737
- [`ToolCallOutputItem`][agents.items.ToolCallOutputItem] indicates that a tool was called. The raw item is the tool response. You can also access the tool output from the item.
3838
- [`ReasoningItem`][agents.items.ReasoningItem] indicates a reasoning item from the LLM. The raw item is the reasoning generated.

examples/research_bot/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ If you're building your own research bot, some ideas to add to this are:
2121

2222
1. Retrieval: Add support for fetching relevant information from a vector store. You could use the File Search tool for this.
2323
2. Image and file upload: Allow users to attach PDFs or other files, as baseline context for the research.
24-
3. More planning and thinking: Models often produce better results given more time to think. Improve the planning process to come up with a better plan, and add an evaluation step so that the model can choose to improve it's results, search for more stuff, etc.
24+
3. More planning and thinking: Models often produce better results given more time to think. Improve the planning process to come up with a better plan, and add an evaluation step so that the model can choose to improve its results, search for more stuff, etc.
2525
4. Code execution: Allow running code, which is useful for data analysis.

0 commit comments

Comments
 (0)