Github is a popular code hosting platform that allows you to collaborate with your team.Create a file github_agent.py with the following code:
github_agent.py
Copy
Ask AI
from phi.agent import Agentfrom phi.tools.github import GithubToolsagent = Agent( instructions=[ "Use your tools to answer questions about the repo: agno-agi/phidata", "Do not create any issues or pull requests unless explicitly asked to do so", ], tools=[GithubTools(base_url="enter_base_url_here")],)agent.print_response("List open pull requests", markdown=True)