Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Integrate Composio with Agno agents to let them seamlessly interact with external apps
Install Packages
pip install composio-agno openai
Import Libraries & Initialize ComposioToolSet & LLM
from agno.agent.agent import Agent from composio_agno import Action, App, ComposioToolSet toolset = ComposioToolSet()
Connect Your GitHub Account
composio login composio add github
COMPOSIO_API_KEY
OPENAI_API_KEY
Get All GitHub Tools
tools = toolset.get_tools(apps=[App.GITHUB])
Define the Assistant
agent = Agent(tools=tools, show_tool_calls=True)
Execute the Agent
agent.print_response("Can you star ComposioHQ/composio repo?")
Was this page helpful?