第一个autogen与docker项目

前提条件:在windows上安装docker

代码如下:

python 复制代码
import os
import autogen
from autogen import AssistantAgent, UserProxyAgent

llm_config = {
    "config_list": [
        {
            "model": "GLM-4-Plus",
            "api_key": "your api key",
            "base_url": "https://open.bigmodel.cn/api/paas/v4/",
        }
    ]
}

with autogen.coding.DockerCommandLineCodeExecutor(work_dir="coding") as code_executor:
    assistant = AssistantAgent("assistant", llm_config=llm_config)
    user_proxy = UserProxyAgent(
        "user_proxy", code_execution_config={"executor": code_executor}
    )

    # Start the chat
    user_proxy.initiate_chat(
        assistant,
        message="1 plus 1 equals what?",
    )

运行结果:

查看安装的镜像:

bash 复制代码
docker images

希望这些内容对你有所帮助!如果有任何问题,欢迎在评论区留言。

相关推荐
ZHOU_WUYI2 个月前
autogen框架中使用chatglm4模型实现react
autogen
我叫白小猿2 个月前
【大模型-智能体】AutoGen Studio测试和导出工作流程
人工智能·python·workflow·工作流·智能体·autogen
雾散睛明4 个月前
autogen改变屏幕亮度
agent·autogen·学习实践
Linux猿4 个月前
828华为云征文 | 云服务器Flexus X实例:部署 AgentOps,全方位监测智能体
人工智能·华为云·agent·autogen·flexus云服务器x实例·华为云服务器·agentops
Linux猿4 个月前
828华为云征文 | 云服务器Flexus X实例:多智能体对话框架 AutoGen 部署和实例运行
华为云·agent·多智能体·autogen·flexus云服务器x实例·华为云服务器·autogen studio
Linux猿5 个月前
AutoGen 检索增强生成(RAG)功能解析
人工智能·机器学习·rag·autogen·检索增强生成
yexia5535 个月前
用AutoGen让智能体打一场辩论赛:伴侣的钱是我的钱吗?
llm·autogen
风笑谷8 个月前
ollama + autogen排雷
windows·autogen·ollama·litellm
-派神-1 年前
AutoGen实战应用(三):多代理协作的数据可视化
人工智能·chatgpt·autogen