What are tools?
Tools are Python functions the AI can call to look up live data from your app — database queries, external API calls, or computations. For example, a find_customer tool lets the AI answer "What's John Smith's account number?" by running a real query instead of guessing.
Enable only the tools you want the AI to have access to. Tools are defined in application code with @tool_registry.tool() and cannot be added from this page.
{% if tools %}
{% for tool in tools %}
{% endfor %}
{% else %}
No tools registered. Developers can register tools using @tool_registry.tool().
{% endif %}