From 287462c6e3cf28a8760a0e2912a9ba868c4e8ff4 Mon Sep 17 00:00:00 2001 From: Sijun He Date: Wed, 10 Jan 2024 16:55:38 +0800 Subject: [PATCH] rename (#278) --- README.md | 2 +- docs/index.md | 2 +- erniebot-agent/tests/integration_tests/tools/test_scraper.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb22dac18..25db09390 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ -ERNIE Bot SDK 仓库包含两个项目:ERNIE Bot Agent 和 ERNIE Bot。ERNIE Bot Agent 是百度飞桨推出的基于文心大模型编排能力的大模型智能体开发框架,结合了飞桨星河社区的丰富预置平台功能。ERNIE Bot 则为开发者提供便捷接口,轻松调用文心大模型的文本创作、通用对话、语义向量及AI作图等基础功能。 +ERNIE SDK 仓库包含两个项目:ERNIE Bot Agent 和 ERNIE Bot。ERNIE Bot Agent 是百度飞桨推出的基于文心大模型编排能力的大模型智能体开发框架,结合了飞桨星河社区的丰富预置平台功能。ERNIE Bot 则为开发者提供便捷接口,轻松调用文心大模型的文本创作、通用对话、语义向量及AI作图等基础功能。 ![eb_sdk_agent_structure](https://github.com/PaddlePaddle/ERNIE-SDK/assets/11987277/1fbcfbca-7695-4cca-9b4f-35a49d1d7c52) diff --git a/docs/index.md b/docs/index.md index 5bd948cd7..6a8034590 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,7 @@ hide:
-

ERNIE Bot SDK

+

ERNIE SDK

diff --git a/erniebot-agent/tests/integration_tests/tools/test_scraper.py b/erniebot-agent/tests/integration_tests/tools/test_scraper.py index 20bce7e5f..1715733d7 100644 --- a/erniebot-agent/tests/integration_tests/tools/test_scraper.py +++ b/erniebot-agent/tests/integration_tests/tools/test_scraper.py @@ -24,6 +24,6 @@ async def run_query(self, query) -> str: async def test_run(self): result = await self.run_query( - "请参考:https://ernie-bot-agent.readthedocs.io/zh-cn/latest/ 回答:ERNIE Bot SDK 仓库包含几个项目" + "请参考:https://ernie-bot-agent.readthedocs.io/zh-cn/latest/ 回答:ERNIE SDK 仓库包含几个项目" ) self.assertIn("ERNIE Bot Agent", result)