diff --git a/README.md b/README.md index 191ce5b0..004dece0 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ AppBuilder-SDK不仅提供了百度智能云提供的基础能力组件,同时 ## 如何安装AppBuilder-SDK -#### 百度智能云千帆AppBuilder-SDK 最新版本 0.9.7 (2024-11-27) +#### 百度智能云千帆AppBuilder-SDK 最新版本 0.9.8 (2024-12-10) 百度智能云千帆AppBuilder-SDK 更新记录&最新特性请查阅我们的[版本说明](/docs/DevelopGuide/ChangeLog/changelog.md) diff --git a/docs/DevelopGuide/ChangeLog/changelog.md b/docs/DevelopGuide/ChangeLog/changelog.md index 18169794..cfcf0888 100644 --- a/docs/DevelopGuide/ChangeLog/changelog.md +++ b/docs/DevelopGuide/ChangeLog/changelog.md @@ -68,3 +68,8 @@ * 新增TreeMind组件 * 新增工作流Agent回复“信息收集节点”功能,支持多轮对话事件处理 * Python的ToolCall功能支持通过函数定义、装饰器的形式等生成ToolCall参数 +* **2024.11.27 v0.9.8版本发布** [ReleaseNote](https://github.com/baidubce/app-builder/releases/tag/0.9.8) + * AppBuilderClient新增追问功能支持 + * TTS组件新增更多语音效果 + * 通用文字识别组件新增更多语言支持 + * 实时语音通话功能内测 \ No newline at end of file diff --git a/docs/DevelopGuide/HowToContributeCode/README.md b/docs/DevelopGuide/HowToContributeCode/README.md index 9be7f6d3..e5687738 100644 --- a/docs/DevelopGuide/HowToContributeCode/README.md +++ b/docs/DevelopGuide/HowToContributeCode/README.md @@ -10,7 +10,7 @@ 当前已集成Python版本AppBuilder-SDK 0.9.4及相关依赖,方便开发者融入个人已有的大模型应用程序。此部分仍在不断建设中。 二次开发可以采用官方提供的开发镜像,便于快速安装各种依赖库。也可在镜像中使用已安装的`appbuilder_trace_server`、`appbuilder_bce_deploy`工具。 ``` shell -docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-devel:0.9.7 +docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-devel:0.9.8 ``` ### 消息(Message) diff --git a/docs/QuickStart/StartFirstAINativeApplication/install.md b/docs/QuickStart/StartFirstAINativeApplication/install.md index e87a66ef..792a9635 100644 --- a/docs/QuickStart/StartFirstAINativeApplication/install.md +++ b/docs/QuickStart/StartFirstAINativeApplication/install.md @@ -40,5 +40,5 @@ go get github.com/baidubce/app-builder/go/appbuilder ### Docker (当前仅集成了Python版本AppBuilder-SDK) ``` shell -docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-devel:0.9.7 +docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-devel:0.9.8 ``` diff --git a/docs/README_en.md b/docs/README_en.md index 3611bcab..99b24c4d 100644 --- a/docs/README_en.md +++ b/docs/README_en.md @@ -47,7 +47,7 @@ Baidu AI Cloud Qianfan AppBuilder-SDK offers the following essential features fo ## How to install? -#### The latest version of Baidu AI Cloud Qianfan AppBuilder SDK is 0.9.7 (2024-11-27) +#### The latest version of Baidu AI Cloud Qianfan AppBuilder SDK is 0.9.8 (2024-12-10) Baidu AI Cloud Qianfan AppBuilder SDK ReleaseNote please refer to our [version description](/docs/DevelopGuide/ChangeLog/changelog.md) diff --git a/docs/README_ja.md b/docs/README_ja.md index 7699ca02..bfac2b37 100644 --- a/docs/README_ja.md +++ b/docs/README_ja.md @@ -44,7 +44,7 @@ Baidu AI Cloud Qianfan AppBuilder-SDKは、AIアプリケーション開発者 ## どのようにインストールしますか? -#### Baidu AI Cloud Qianfan AppBuilder SDKの最新バージョンは0.9.7(2024-11-27)です +#### Baidu AI Cloud Qianfan AppBuilder SDKの最新バージョンは0.9.8(2024-12-10)です Baidu AI Cloud Qianfan AppBuilder SDKのリリースノートについては、[バージョン説明](DevelopGuide/ChangeLog/changelog.md)をご覧ください。 diff --git a/docs/Tools/SphinxSh/source/conf.py b/docs/Tools/SphinxSh/source/conf.py index 166fc916..3f633c17 100644 --- a/docs/Tools/SphinxSh/source/conf.py +++ b/docs/Tools/SphinxSh/source/conf.py @@ -14,7 +14,7 @@ project = 'Appbuilder-SDK' copyright = '2024, baidubce' author = 'baidubce' -release = '0.9.7' +release = '0.9.8' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/python/__init__.py b/python/__init__.py index 3e949bea..04de5e9f 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -13,7 +13,7 @@ # limitations under the License. -__version__ = '0.9.7' +__version__ = '0.9.8' import os import sys diff --git a/python/utils/bce_deploy.py b/python/utils/bce_deploy.py index 617b2060..60d9efb8 100644 --- a/python/utils/bce_deploy.py +++ b/python/utils/bce_deploy.py @@ -113,8 +113,8 @@ def build_user_data(self): + f"rm {self.tar_file_name}\\n" + f"chmod a+x {self.run_script_name}\\n" + "yum install -y docker\\n" - + "docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-cloud:0.9.7\\n" - + f"docker run -itd --net=host -v /root/test:{workspace} --name appbuilder-sdk registry.baidubce.com/appbuilder/appbuilder-sdk-cloud:0.9.7{workspace}/{self.run_script_name}" + + "docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-cloud:0.9.8\\n" + + f"docker run -itd --net=host -v /root/test:{workspace} --name appbuilder-sdk registry.baidubce.com/appbuilder/appbuilder-sdk-cloud:0.9.8{workspace}/{self.run_script_name}" ) return user_data diff --git a/setup.py b/setup.py index 3fe0c4ed..36d42008 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ setup( name="appbuilder-sdk", # NOTE(chengmo): 修改此版本号时,请注意同时修改 __init__.py 中的 __version__ - version="0.9.7", + version="0.9.8", author="dongdaxiang", author_email="dongdaxiang@baidu.com", packages=packages,