安全公告 — 恶意 litellm 版本 1.82.7 与 1.82.8 已从 PyPI 移除(存在 API 密钥外泄风险)。请卸载、轮换已暴露凭据,并升级至安全版本(如 1.82.9+)。运行 pip show litellm 以确认。 PyPI · README

构建多智能体系统
无需复杂配置

统一、生产就绪的智能体应用框架。从简单自动化到复杂多智能体协作,一应俱全。

核心能力

构建生产级智能体系统所需的一切。

Agent Core

生产级执行引擎,内置重试与错误处理。

|

编排

基于图的工作流,支持条件路由与并行执行。

处理中…

记忆系统

长期记忆,Mem0 集成,兼容任意 LLM 后端。

会话已存储
上下文已检索
记忆已整合

A2A 通信

智能体间消息协议

MCP 协议

Model Context Protocol 支持

可观测性

链路追踪、指标与监控

GUI Agent

桌面自动化框架

工具系统

函数装饰器与远程工具

任务校验

Pydantic 输出解析

简单易用

用最少代码构建复杂系统。

example.py
from agenticx import Agent, Task, AgentExecutor
from agenticx.llms import OpenAIProvider

agent = Agent(
    id="research-agent",
    name="Research Assistant",
    role="Information gatherer",
    goal="Find and synthesize information"
)

task = Task(
    description="Research latest AI frameworks",
    expected_output="Comprehensive analysis"
)

executor = AgentExecutor(agent=agent, llm=OpenAIProvider())
result = executor.run(task)

快速开始

几分钟内跑起来。

01

安装

$ pip install agenticx
02

配置

$ export OPENAI_API_KEY="..."
03

运行

$ python your_agent.py

今天就开始构建

加入正在构建下一代 AI 应用的开发者行列。