Github
Prerequisites
pip install -U PyGithubexport GITHUB_ACCESS_TOKEN=***Example
from bitca.agent import Agent
from bitca.tools.github import GithubTools
agent = Agent(
instructions=[
"Use your tools to answer questions about the repo: bitca/bitca",
"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)Toolkit Params
Parameter
Type
Default
Description
Toolkit Functions
Function
Description
Last updated