毫无疑问,多智能体肯定是 openai 未来重要的研究方向之一,前些天 openai 著名研究科学家 noam brown 还在 x 上为 openai 正在组建的一个新的多智能体研究团队招募机器学习工程师。
项目地址:https://github.com/openai/swarm
pip install git+ssh://git@github.com/openai/swarm.git
登录后复制
from swarm import Swarm, Agentclient = Swarm()def transfer_to_agent_b():return agent_bagent_a = Agent(name="Agent A",instructions="You are a helpful agent.",functions=[transfer_to_agent_b],)agent_b = Agent(name="Agent B",instructions="Only speak in Haikus.",)response = client.run(agent=agent_a,messages=[{"role": "user", "content": "I want to talk to agent B."}],)print(response.messages[-1]["content"])
登录后复制
Hope glimmers brightly,New paths converge gracefully,What can I assist?
登录后复制
from swarm import Swarmclient = Swarm()
登录后复制
先让当前智能体完成一个结果 执行工具调用并附加结果 如有必要,切换智能体 如有必要,更新上下文变量 如果没有新的函数调用,则返回
响应字段
agent = Agent(instructions="You are a helpful agent.")
登录后复制
def instructions(context_variables):user_name = context_variables["user_name"]return f"Help the user, {user_name}, do whatever they want."agent = Agent(instructions=instructions)response = client.run(agent=agent,messages=[{"role":"user", "content": "Hi!"}],context_variables={"user_name":"John"})print(response.messages[-1]["content"])
登录后复制
Hi John, how can I assist you today?
登录后复制
Swarm Agent 可以直接调用 Python 函数。 函数通常应返回一个字符串(数值会被转换为字符串)。 如果一个函数返回了一个 Agent,则执行过程将转交给该 Agent。 如果函数定义了 context_variables 参数,则它将由传递到 client.run() 的 context_variables 填充。
def greet(context_variables, language):user_name = context_variables["user_name"]greeting = "Hola" if language.lower() == "spanish" else "Hello"print(f"{greeting}, {user_name}!")return "Done"agent = Agent(functions=[print_hello])client.run(agent=agent,messages=[{"role": "user", "content": "Usa greet() por favor."}],context_variables={"user_name": "John"})
登录后复制
Hola, John! 如果某个 Agent 函数调用出错(缺少函数、参数错误等),则会在聊天之中附加一条报错响应,以便 Agent 恢复正常。 如果 Ageny 调用多个函数,则按顺序执行它们。 交接和更新上下文变量 通过在返回的函数中包含一个 Agent,可将执行过程交接给这个 Agent。sales_agent = Agent(name="Sales Agent")def transfer_to_sales():return sales_agentagent = Agent(functions=[transfer_to_sales])response = client.run(agent, [{"role":"user", "content":"Transfer me to sales."}])print(response.agent.name)
登录后复制
Sales Agent
登录后复制
sales_agent = Agent(name="Sales Agent")def talk_to_sales():print("Hello, World!")return Result(value="Done",agent=sales_agent,context_variables={"department": "sales"})agent = Agent(functions=[talk_to_sales])response = client.run(agent=agent,messages=[{"role": "user", "content": "Transfer me to sales"}],context_variables={"user_name": "John"})print(response.agent.name)print(response.context_variables)
登录后复制
Sales Agent{'department': 'sales', 'user_name': 'John'}
登录后复制
文档字符串会转换为函数 description。 没有默认值的参数会设置为 required。 类型提示会映射到参数的 type(默认为 string)。 不明确支持对每个参数进行描述,但如果只是在文档字符串中添加,应该能以相似的方式工作。
def greet(name, age: int, location: str = "New York"):"""Greets the user. Make sure to get their name and age before calling.Args:name: Name of the user.age: Age of the user.location: Best place on earth."""print(f"Hello {name}, glad you are {age} in {location}!"){"type": "function","function": {"name": "greet","description": "Greets the user. Make sure to get their name and age before calling.\n\nArgs:\n name: Name of the user.\n age: Age of the user.\n location: Best place on earth.","parameters": {"type": "object","properties": {"name": {"type": "string"},"age": {"type": "integer"},"location": {"type": "string"}},"required": ["name", "age"]}}}
登录后复制
stream = client.run(agent, messages, stream=True)for chunk in stream:print(chunk)
登录后复制
{"delim":"start"} 和 {"delim":"start"},用于在 Agent 每次处理单个消息(响应或函数调用)时发出信号。这有助于识别 Agent 之间的切换。 为方便起见,{"response": Response} 将在流的末尾返回带有已聚合的(完整)响应的 Response 对象。
Ilan Bigio - ibigio James Hills - jhills20 Shyamal Anadkat - shyamal-anadkat Charu Jaiswal - charuj Colin Jarvis - colin-openai
以上就是OpenAI今天Open了一下:开源多智能体框架Swarm的详细内容,更多请关注抖狐科技其它相关文章!
-
如何用命令打开数据库
可以通过命令行界面使用以下步骤打开数据库:启动 dbms 命令行界面。输入连接命令:connect database_name;输入用户凭据(可选:set username = 'your_usern...
-
PHP 函数与 Matlab 函数比较
PHP 函数与 Matlab 函数比较 引言 PHP 和 Matlab 都是广泛使用的编程语言,各有其优点和缺点。本文将比较 PHP 函数和 Matlab 函数的相似性和差异,并通过一个实战案例进行说...
-
炉石传说怎么切换狂野模式
炉石传说狂野模式什么时候出 狂野模式上线时间: 最新流言 新扩展包的上线时间为4月24日。 新扩展包的主题是艾泽拉斯的远古神灵,新版本可能被命名为“ OldGods的耳语”。 注:本消息来自一家名为p...
-
如何安装ipadpro键盘
安装 ipad pro 键盘分四步:1. 对齐连接器;2. 按入连接,磁力固定;3. 拉开铰链或槽口至所需角度;4. 提拉键盘即可取下。如何安装 iPad Pro 键盘 安装 iPad Pro 键盘的...
-
小红书自拍限流怎么解决
小红书自拍限流的解决方法包括:避免过度美化照片。注意背景和服饰搭配。添加文字或贴纸丰富内容。发布优质原创自拍。积极互动、关注相关账号。使用小红书自有工具。避免违规行为。若仍限流,可联系小红书客服寻求帮...