🤖 AA Kit:特工就是一切
🚀 One Agent, Many Forms
Your agent is a tool. Your agent is a server. Your agent is a function.
With AA Kit, agents transcend categories.
______________________________________________________________________
🌟 哲学
“当你意识到一个代理可以成为另一个代理的工具,而这个工具也是一个代理时,你就会明白:代理是人工智能的通用原语。”
AAKit不仅仅是另一个代理框架,它是一种范式转变。我们认为代理不应该被限制在“聊天机器人”或“助理”这样的角色中。相反,代理是 普遍原始 人工智能系统,能够:
- 🔧 工具 对于其他代理商
- 🌐 服务器 通过MCP协议
- ⚡ 函数 自然构成
- 🏗️ 积木 人工智能生态系统
✨ 是什么让AA套件与众不同
🎯 代理=功能
# Three parameters. Returns intelligence. No complexity.
agent = Agent(
name="assistant",
instruction="You are a helpful assistant",
model="gpt-4"
)🌐 代理=服务器
# Every agent exposes itself as an MCP server instantly
agent.serve_mcp()
# Now available at: http://localhost:8080/mcp🔗 代理=工具
# Pass one agent to another as a tool
writer = Agent(
name="writer",
instruction="You write articles",
model="gpt-4",
tools=[researcher_agent] # Natural composition
)🚀 代理=生产
速率限制、重试、缓存、断路器——稍后不会添加,但从第一天起就内置在构造函数中。
🎨 核心功能
🏗️ 通用组成
代理自然地组合,因为它们下面都是相同的原始体。不需要特殊的接口或适配器。
🌐 MCP本地
每个代理都自动兼容MCP。零配置,与整个MCP生态系统即时互操作。
⚡ 生产就绪
内置速率限制、重试逻辑、断路器和缓存。无需重构即可从原型扩展到生产。
📊 按数字
| 3 | 0 | ∞ | 1 |
|---|---|---|---|
| 生产线 | MCP配置 | 组成深度 | 通用协议 |
🔮 即将推出
AA Kit的开源版本即将完成。以下是您可以期待的内容:
📦 核心包
- 纯Python实现
- 核心功能零外部依赖
- 支持OpenAI、Anthropic和本地模型
- 内置内存后端(Redis、SQLite、PostgreSQL)
🛠️ 开发者体验
- 具有交互式代理构建器的丰富CLI
- 热重新加载以进行开发
- 全面的调试工具
- 大量示例和教程
🌐 MCP生态系统
- 自动生成服务器
- 客户端连接助手
- 协议验证和测试
- 社区工具注册表
📚 文档
- API综合参考
- 建筑深度探索
- 生产部署指南
- 框架比较分析
🎯 快速预览
在我们准备完整版本的同时,这里有一个AA Kit体验的味道:
from aakit import Agent
# Create a research agent
researcher = Agent(
name="researcher",
instruction="You research topics thoroughly and provide detailed analysis",
model="gpt-4"
)
# Create a writer that uses the researcher
writer = Agent(
name="writer",
instruction="You write engaging articles based on research",
model="claude-3",
tools=[researcher] # Composition magic
)
# Serve both as MCP servers
researcher.serve_mcp(port=8080)
writer.serve_mcp(port=8081)
# Now available to the entire MCP ecosystem!🚀 收到通知
想成为第一个使用AA Kit构建的人吗?
🤝 抢先体验
有兴趣贡献或尽早获取?我们正在寻找:
- 🏗️ 框架开发人员 熟悉代理架构
- 🧪 测试员 构建生产人工智能系统
- 📝 技术作家 对开发人员体验充满热情
- 🎨 UI/UX设计师 对于我们的开发工具
联系方式: hello@aakit.dev
🌟 愿景
AA Kit代表了我们对人工智能代理看法的根本转变:
不是作为孤立的应用程序,而是作为构成智能系统构建块的可组合原语。
每个代理都可以:
- 独立应用程序
- 其他代理的工具
- 分布式系统中的服务器
- 更大计算中的函数
这不仅仅是代码——这是一种构建人工智能的新方法。
📄 许可证
MIT许可证-请参阅 许可证 了解详情。
______________________________________________________________________
🤖 Agent As Everything. Everything As Agent. 🤖
The future of AI is composable.
