LLM & Agent Integrations

If you are building your own AI agents, bro-sdk provides built-in introspection tools to easily pass bro capabilities directly to LLMs (OpenAI and Anthropic) as function calling schemas.

python
from bro.introspection import get_openai_tools, get_anthropic_tools # Get the tools formatted for OpenAI openai_tools = get_openai_tools() # Get the tools formatted for Anthropic anthropic_tools = get_anthropic_tools()