Skip to content

Commit 5ec909c

Browse files
committed
docs: update readme.md
1 parent a84f31d commit 5ec909c

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ DEMO视频:https://cdn.link-ai.tech/doc/cow_demo.mp4
5353
<br>
5454

5555
# 🏷 更新日志
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+
5659
>**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接口
5760
5861
>**2024.12.13:** [1.7.4版本](https://github.com/zhayujie/chatgpt-on-wechat/releases/tag/1.7.4) 新增 Gemini 2.0 模型、新增web channel、解决内存泄漏问题、解决 `#reloadp` 命令重载不生效问题

channel/web/web_channel.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,15 @@ def chat_page(self):
186186
return f.read()
187187

188188
def startup(self):
189-
print("\nWeb 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")
190198

191199
# 确保静态文件目录存在
192200
static_dir = os.path.join(os.path.dirname(__file__), 'static')

plugins/agent/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ $agent use software_team 帮我写一个产品预约体验的表单页面
6060

6161
- `calculator`: 数学计算工具
6262
- `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` 目录下
6666
- `terminal`: 终端命令执行工具

plugins/agent/config-template.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ tools:
66
# get your apikey from https://serper.dev/
77
api_key: "YOUR API KEY"
88

9-
# Team config
9+
# Agent Team 配置
1010
teams:
11+
# 通用智能体团队
1112
general_team:
1213
model: "gpt-4.1-mini" # 团队使用的模型
1314
description: "A versatile research and information agent team"
@@ -24,6 +25,7 @@ teams:
2425
- browser
2526
- terminal
2627

28+
# 软件开发智能体团队
2729
software_team:
2830
model: "gpt-4.1-mini"
2931
description: "A software development team with product manager, developer and tester."

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Pillow
88
pre-commit
99
web.py
1010
linkai>=0.0.6.0
11-
agentmesh-sdk>=0.1.2
11+
agentmesh-sdk>=0.1.3

0 commit comments

Comments
 (0)