Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ZiTao-Li committed Mar 9, 2024
1 parent a66f5ef commit 735d68e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
4 changes: 0 additions & 4 deletions docs/sphinx_doc/source/tutorial/zh/105-logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@

日志功能的首先包含的是一个基于Python内置 `logging`的根绝多智体场景可客制化的`loguru.logger`模块。其包含下面的一些特性:

- **Colored Output**: Assigns different colors to different speakers in a chat to enhance readability.
- **调整输出字体颜色**:为了增加日志的可读性,该模块为不同的在对话中发言智能体提供不同颜色的字体高亮。
- **Redirecting Standard Error (stderr)**: Captures error messages and logs them with the `ERROR` level.
- **重定向错误输出(stderr)**: 该模块自动抓取报错信息,在日志中用`ERROR`层级记录。
- **Custom Log Levels**: Adds a custom level called `CHAT` that is specifically designed for logging dialogue interactions.
- **客制化日志记录等级**: 该模块增加了一个日志记录等级`CHAT`,用来记录智能体之间的对话和互动。
- **Special Formatting**: Format logs with timestamps, levels, function names, and line numbers. Chat messages are formatted differently to stand out.
- **定制格式**:格式化日志包含了时间戳、记录等级、function名字和行号。智能体之间的对话会用不同的格式显示。


Expand Down
12 changes: 6 additions & 6 deletions docs/sphinx_doc/source/tutorial/zh/201-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ class AgentBase(Operator):

以下是一个总结了 AgentPool 中一些关键agent的功能的表格:

| Agent 种类 | 描述 | Typical Use Cases |
|--------------|---------------------------------------------------| ------------------------------------------------------------ |
| `AgentBase` | 作为所有agent的超类,提供了必要的属性和方法。 | 构建任何自定义代理的基础。 |
| `DialogAgent` | 通过理解上下文和生成连贯的响应来管理对话。 | 客户服务机器人,虚拟助手。 |
| `UserAgent` | 与用户互动以收集输入,生成可能包括URL或基于所需键的额外具体信息的消息。 | 为代理收集用户输入 |
| *更多agent* | AgentScope 正在不断扩大agent池子,加入更多专门化的agent,以适应多样化的应用。 | |
| Agent 种类 | 描述 | Typical Use Cases |
|--------------|---------------------------------------------------|-------------------|
| `AgentBase` | 作为所有agent的超类,提供了必要的属性和方法。 | 构建任何自定义agent的基础。 |
| `DialogAgent` | 通过理解上下文和生成连贯的响应来管理对话。 | 客户服务机器人,虚拟助手。 |
| `UserAgent` | 与用户互动以收集输入,生成可能包括URL或基于所需键的额外具体信息的消息。 | 为agent收集用户输入 |
| *更多agent* | AgentScope 正在不断扩大agent池子,加入更多专门化的agent,以适应多样化的应用。 | |

## Customizing Agents from the AgentPool

Expand Down

0 comments on commit 735d68e

Please sign in to comment.