Skip to content
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 tools/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ This will be converted into the following tool definition:
```

This tool definition is then sent to the model so that it knows how to call the tool when it is requested.
You'll notice as well that the `Args` section is automatically stripped from the definition, parsed and used to populate the definitions of individualproperties.
You'll notice as well that the `Args` section is automatically stripped from the definition, parsed and used to populate the definitions of individual properties.

When using a Pydantic model in an argument of a tool function, Agno will automatically convert the model into the required tool definition format.

Expand Down
1 change: 1 addition & 0 deletions tools/usage/team-with-tool-hooks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ news_agent = Agent(
name="News Agent",
id="news-agent",
role="Search HackerNews for information",
model=OpenAIResponses(id="gpt-5.2"),
tools=[HackerNewsTools(cache_results=True)],
instructions=[
"Find information about the company on HackerNews",
Expand Down