from agno.agent import Agentfrom agno.tools.github import GithubToolsagent = Agent( instructions=[ "Use your tools to answer questions about the repo: agno-agi/agno", "Do not create any issues or pull requests unless explicitly asked to do so", ], tools=[GithubTools()], show_tool_calls=True,)agent.print_response("List open pull requests", markdown=True)
from agno.agent import Agentfrom agno.tools.github import GithubToolsagent = Agent( instructions=[ "Use your tools to answer questions about the repo: agno-agi/agno", "Do not create any issues or pull requests unless explicitly asked to do so", ], tools=[GithubTools()], show_tool_calls=True,)agent.print_response("List open pull requests", markdown=True)