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.
from agno.agent import Agent from agno.tools.jira import JiraTools agent = Agent( tools=[JiraTools()], show_tool_calls=True, markdown=True, ) agent.print_response("列出项目 'DEMO' 中的所有未完成 issue") agent.print_response("在项目 'DEMO' 中创建一个优先级为高的任务")
创建虚拟环境
Terminal
python3 -m venv .venv source .venv/bin/activate
设置您的 Jira 凭证
export JIRA_API_TOKEN=xxx export JIRA_SERVER_URL=xxx export JIRA_EMAIL=xxx export OPENAI_API_KEY=xxx
安装库
pip install -U jira openai agno
运行 Agent
python cookbook/tools/jira_tools.py