Skip to main content
Tool result caching is designed to avoid unnecessary recomputation by storing the results of function calls on disk. This is useful during development and testing to speed up the development process, avoid rate limiting, and reduce costs.
This is supported for all Agno Toolkits

On Toolkit

Pass cache_results=True to the Toolkit constructor to enable caching for that Toolkit.
cache_tool_calls.py

On @tool

Pass cache_results=True to the @tool decorator to enable caching for that tool.
cache_tool_calls.py