跳到内容

如何使用 LangGraph Platform 部署 CrewAI、AutoGen 和其他框架

LangGraph Platform 为部署代理提供基础设施。这与 LangGraph 无缝集成,但也适用于其他框架。使其工作的方法是将代理包装在单个 LangGraph 节点中,并使其成为整个图。

这样做将允许您部署到 LangGraph Platform,并允许您获得许多好处。您将获得水平可扩展的基础设施、用于处理突发操作的任务队列、用于支持短期内存的持久层以及长期内存支持。

在本指南中,我们将展示如何使用 AutoGen 代理执行此操作,但此方法应适用于在 CrewAI、LlamaIndex 和其他框架中定义的代理。

设置

%pip install autogen langgraph
import getpass
import os


def _set_env(var: str):
    if not os.environ.get(var):
        os.environ[var] = getpass.getpass(f"{var}: ")


_set_env("OPENAI_API_KEY")

定义 autogen 代理

这里我们定义了我们的 AutoGen 代理。来自 https://github.com/microsoft/autogen/blob/0.2/notebook/agentchat_web_info.ipynb

import autogen
import os

config_list = [{"model": "gpt-4o", "api_key": os.environ["OPENAI_API_KEY"]}]

llm_config = {
    "timeout": 600,
    "cache_seed": 42,
    "config_list": config_list,
    "temperature": 0,
}

autogen_agent = autogen.AssistantAgent(
    name="assistant",
    llm_config=llm_config,
)

user_proxy = autogen.UserProxyAgent(
    name="user_proxy",
    human_input_mode="NEVER",
    max_consecutive_auto_reply=10,
    is_termination_msg=lambda x: x.get("content", "").rstrip().endswith("TERMINATE"),
    code_execution_config={
        "work_dir": "web",
        "use_docker": False,
    },  # Please set use_docker=True if docker is available to run the generated code. Using docker is safer than running the generated code directly.
    llm_config=llm_config,
    system_message="Reply TERMINATE if the task has been solved at full satisfaction. Otherwise, reply CONTINUE, or the reason why the task is not solved yet.",
)

包装在 LangGraph 中

我们现在将 AutoGen 代理包装在单个 LangGraph 节点中,并使其成为整个图。这主要涉及为节点定义输入和输出模式,如果您要手动部署它,则需要这样做,因此这不会增加额外的工作

from langgraph.graph import StateGraph, MessagesState


def call_autogen_agent(state: MessagesState):
    last_message = state["messages"][-1]
    response = user_proxy.initiate_chat(autogen_agent, message=last_message.content)
    # get the final response from the agent
    content = response.chat_history[-1]["content"]
    return {"messages": {"role": "assistant", "content": content}}


graph = StateGraph(MessagesState)
graph.add_node(call_autogen_agent)
graph.set_entry_point("call_autogen_agent")
graph = graph.compile()

API 参考:StateGraph

使用 LangGraph Platform 部署

您现在可以像通常使用 LangGraph Platform 一样部署它。有关更多详细信息,请参阅这些说明

评论