From c963c69b43313a32630e1323e98c937e75e26450 Mon Sep 17 00:00:00 2001 From: "panxuchen.pxc" Date: Mon, 29 Jul 2024 10:59:07 +0800 Subject: [PATCH] update req --- docs/sphinx_doc/zh_CN/source/tutorial/208-distribute.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sphinx_doc/zh_CN/source/tutorial/208-distribute.md b/docs/sphinx_doc/zh_CN/source/tutorial/208-distribute.md index 8494b956c..96ee337e8 100644 --- a/docs/sphinx_doc/zh_CN/source/tutorial/208-distribute.md +++ b/docs/sphinx_doc/zh_CN/source/tutorial/208-distribute.md @@ -142,7 +142,7 @@ b = AgentB( ### 步骤2: 编排分布式应用流程 > Note: -> 分布式版本的 Agent 仅支持 `__call__` 方法调用 (即 `agent(x)`),不支持调用其他方法或是属性读写。 +> 当前分布式版本的 Agent 仅支持 `__call__` 方法调用 (即 `agent(x)`),不支持调用其他方法或是属性读写。 在AgentScope中,分布式应用流程的编排和非分布式的程序完全一致,开发者可以用中心化的方式编写全部应用流程。 同时,AgentScope允许本地和分布式部署的智能体混合使用,开发者不用特意区分哪些智能体是本地的,哪些是分布式部署的。 diff --git a/setup.py b/setup.py index ac1fa06e0..a4d507b3c 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ test_requires = ["pytest", "pytest-cov", "pre-commit"] gradio_requires = [ - "gradio==4.19.1", + "gradio==4.38.1", "modelscope_studio==0.0.5", ]