Skip to content

Commit

Permalink
Update for version 0.9.8 (#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
userpj authored Dec 10, 2024
1 parent 173aa72 commit aa580b5
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
5 changes: 5 additions & 0 deletions docs/DevelopGuide/ChangeLog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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组件新增更多语音效果
* 通用文字识别组件新增更多语言支持
* 实时语音通话功能内测
2 changes: 1 addition & 1 deletion docs/DevelopGuide/HowToContributeCode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/QuickStart/StartFirstAINativeApplication/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion docs/README_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion docs/README_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)をご覧ください。

Expand Down
2 changes: 1 addition & 1 deletion docs/Tools/SphinxSh/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.


__version__ = '0.9.7'
__version__ = '0.9.8'

import os
import sys
Expand Down
4 changes: 2 additions & 2 deletions python/utils/bce_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
packages=packages,
Expand Down

0 comments on commit aa580b5

Please sign in to comment.