Agno采用标准Python包管理方式安装,具体步骤如下:
- 環境準備:需Python 3.10+环境,支持Windows/Linux/macOS三大平台。建议使用virtualenv创建隔离环境。
- 基礎工事スルー
pip install -U agno
即可完成核心安装。可选源码安装需克隆GitHub仓库。 - 扩展依赖:按需安装附加组件,如
pip install openai
用于OpenAI模型支持,pip install lancedb tantivy
用于知识库功能。 - API設定:通过环境变量设置第三方服务密钥,例如
export OPENAI_API_KEY='你的密钥'
.
安装后可通过简单测试代码验证:from agno.agent import Agent
from agno.models.openai import OpenAIChat
agent = Agent(model=OpenAIChat(id="gpt-4o"))
agent.print_response("测试安装")
若看到响应输出即说明安装成功。值得注意的是,Agno采用按需加载设计,未使用的功能模块不会占用额外资源。
この答えは記事から得たものである。アグノ:記憶、知識、ツールを備えたマルチモーダルインテリジェンス構築のためのフレームワークについて