File tree Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,9 @@ DEMO视频:https://cdn.link-ai.tech/doc/cow_demo.mp4
53
53
<br >
54
54
55
55
# 🏷 更新日志
56
+
57
+ > ** 2025.05.23:** [ 1.7.6版本] ( https://github.com/zhayujie/chatgpt-on-wechat/releases/tag/1.7.6 ) 优化web网页channel、新增[ AgentMesh多智能体插件] ( https://github.com/zhayujie/chatgpt-on-wechat/blob/master/plugins/agent/README.md ) 、百度语音合成优化、企微应用access_token获取优化
58
+
56
59
> ** 2025.04.11:** [ 1.7.5版本] ( https://github.com/zhayujie/chatgpt-on-wechat/releases/tag/1.7.5 ) 新增支持 [ wechatferry] ( https://github.com/zhayujie/chatgpt-on-wechat/pull/2562 ) 协议、新增 deepseek 模型、新增支持腾讯云语音能力、新增支持 ModelScope 和 Gitee-AI API接口
57
60
58
61
> ** 2024.12.13:** [ 1.7.4版本] ( https://github.com/zhayujie/chatgpt-on-wechat/releases/tag/1.7.4 ) 新增 Gemini 2.0 模型、新增web channel、解决内存泄漏问题、解决 ` #reloadp ` 命令重载不生效问题
Original file line number Diff line number Diff line change @@ -186,7 +186,15 @@ def chat_page(self):
186
186
return f .read ()
187
187
188
188
def startup (self ):
189
- print ("\n Web Channel is running, please visit http://localhost:9899/chat" )
189
+ logger .info ("""[WebChannel] 当前channel为web,可修改 config.json 配置文件中的 channel_type 字段进行切换。全部可用类型为:
190
+ 1. web: 网页
191
+ 2. terminal: 终端
192
+ 3. wechatmp: 个人公众号
193
+ 4. wechatmp_service: 企业公众号
194
+ 5. wechatcom_app: 企微自建应用
195
+ 6. dingtalk: 钉钉
196
+ 7. feishu: 飞书""" )
197
+ logger .info ("Web对话网页已运行, 请使用浏览器访问 http://localhost:9899/chat" )
190
198
191
199
# 确保静态文件目录存在
192
200
static_dir = os .path .join (os .path .dirname (__file__ ), 'static' )
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ $agent use software_team 帮我写一个产品预约体验的表单页面
60
60
61
61
- ` calculator ` : 数学计算工具
62
62
- ` current_time ` : 获取当前时间
63
- - ` browser ` : 浏览器操作工具,注意需安装额外依赖
64
- - ` google_search ` : 搜索引擎,注意需在` config.yaml ` 中配置api_key
65
- - ` file_save ` : 文件保存工具
63
+ - ` browser ` : 浏览器操作工具,注意需安装 ` browser-use ` 依赖
64
+ - ` google_search ` : 搜索引擎,注意需在` config.yaml ` 中配置 ` api_key `
65
+ - ` file_save ` : 文件保存工具,开启后智能体输出的内容将保存在 ` workspace ` 目录下
66
66
- ` terminal ` : 终端命令执行工具
Original file line number Diff line number Diff line change 6
6
# get your apikey from https://serper.dev/
7
7
api_key : " YOUR API KEY"
8
8
9
- # Team config
9
+ # Agent Team 配置
10
10
teams :
11
+ # 通用智能体团队
11
12
general_team :
12
13
model : " gpt-4.1-mini" # 团队使用的模型
13
14
description : " A versatile research and information agent team"
24
25
- browser
25
26
- terminal
26
27
28
+ # 软件开发智能体团队
27
29
software_team :
28
30
model : " gpt-4.1-mini"
29
31
description : " A software development team with product manager, developer and tester."
Original file line number Diff line number Diff line change 8
8
pre-commit
9
9
web.py
10
10
linkai >= 0.0.6.0
11
- agentmesh-sdk >= 0.1.2
11
+ agentmesh-sdk >= 0.1.3
You can’t perform that action at this time.
0 commit comments