Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for version 1.0.1 #715

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 最新版本 1.0.0 (2025-01-03)
#### 百度智能云千帆AppBuilder-SDK 最新版本 1.0.1 (2025-01-16)

百度智能云千帆AppBuilder-SDK 更新记录&最新特性请查阅我们的[版本说明](/docs/DevelopGuide/ChangeLog/changelog.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/DevelopGuide/AdvancedDevelopment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
当前已集成Python版本AppBuilder-SDK 0.9.4及相关依赖,方便开发者融入个人已有的大模型应用程序。此部分仍在不断建设中。
二次开发可以采用官方提供的开发镜像,便于快速安装各种依赖库。也可在镜像中使用已安装的`appbuilder_trace_server``appbuilder_bce_deploy`工具。
``` shell
docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-devel:1.0.0
docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-devel:1.0.1
```
4 changes: 3 additions & 1 deletion docs/DevelopGuide/ChangeLog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,6 @@
* 工作流自定义组件支持SDK调用
* 新增RAG检索SDK
* Agent Python SDK支持Async调用
* 新增滚动日志功能
* 新增滚动日志功能
* **2025.01.16 v1.0.1版本发布** [ReleaseNote](https://github.com/baidubce/app-builder/releases/tag/1.0.1)
* 修复1.0.0中的Python SDK流式调用慢问题
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 1.0.0 (2025-01-03)
#### The latest version of Baidu AI Cloud Qianfan AppBuilder SDK is 1.0.1 (2025-01-16)

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の最新バージョンは1.0.0(2025-01-03)です
#### Baidu AI Cloud Qianfan AppBuilder SDKの最新バージョンは1.0.1(2025-01-16)です

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 = '1.0.0'
release = '1.0.1'

# -- 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__ = '1.0.0'
__version__ = '1.0.1'

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:1.0.0\\n"
+ f"docker run -itd --net=host -v /root/test:{workspace} --name appbuilder-sdk registry.baidubce.com/appbuilder/appbuilder-sdk-cloud:1.0.0 {workspace}/{self.run_script_name}"
+ "docker pull registry.baidubce.com/appbuilder/appbuilder-sdk-cloud:1.0.1\\n"
+ f"docker run -itd --net=host -v /root/test:{workspace} --name appbuilder-sdk registry.baidubce.com/appbuilder/appbuilder-sdk-cloud:1.0.1 {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="1.0.0",
version="1.0.1",
author="dongdaxiang",
author_email="[email protected]",
packages=packages,
Expand Down
Loading