diff --git a/README.ja.md b/README.ja.md index 670fd64d0..e978fb395 100644 --- a/README.ja.md +++ b/README.ja.md @@ -128,7 +128,7 @@ DB-GPTのアーキテクチャは以下の図に示されています: - [**高度な使用法**](https://docs.dbgpt.site/docs/application/advanced_tutorial/cli) - [SMMF](https://docs.dbgpt.site/docs/application/advanced_tutorial/smmf) - [ファインチューニング](https://docs.dbgpt.site/docs/application/fine_tuning_manual/dbgpt_hub) - - [AWEL](https://docs.dbgpt.site/docs/latest/awel/tutorial) + - [AWEL](http://docs.dbgpt.cn/docs/awel/tutorial) ## 特徴 diff --git a/README.md b/README.md index 8f4ae10d3..f92dbe740 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ As of October 10, 2023, through the fine-tuning of an open-source model with 13 - [**Advanced Usage**](http://docs.dbgpt.cn/docs/application/advanced_tutorial/cli) - [SMMF](http://docs.dbgpt.cn/docs/application/advanced_tutorial/smmf) - [Finetune](http://docs.dbgpt.cn/docs/application/fine_tuning_manual/dbgpt_hub) - - [AWEL](http://docs.dbgpt.cn/docs/latest/awel/tutorial) + - [AWEL](http://docs.dbgpt.cn/docs/awel/tutorial) ## Features diff --git a/assets/wechat.jpg b/assets/wechat.jpg index 414aa006f..91a13bb5e 100644 Binary files a/assets/wechat.jpg and b/assets/wechat.jpg differ diff --git a/dbgpt/_version.py b/dbgpt/_version.py index 974881c24..4dcc72c8a 100644 --- a/dbgpt/_version.py +++ b/dbgpt/_version.py @@ -1 +1 @@ -version = "0.6.1" +version = "0.6.2" diff --git a/dbgpt/rag/knowledge/pdf.py b/dbgpt/rag/knowledge/pdf.py index eff1d00d8..66e82bbd9 100644 --- a/dbgpt/rag/knowledge/pdf.py +++ b/dbgpt/rag/knowledge/pdf.py @@ -138,7 +138,7 @@ def _load(self) -> List[Document]: temp_table = [] temp_title = None page_documents = [] - merged_data = {} # type ignore + merged_data = {} # type: ignore # noqa for i, data in enumerate(self.all_text): content_type = data.get("type") inside_content = data.get("inside") diff --git a/setup.py b/setup.py index 3745179d3..b5e092466 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ IS_DEV_MODE = os.getenv("IS_DEV_MODE", "true").lower() == "true" # If you modify the version, please modify the version in the following files: # dbgpt/_version.py -DB_GPT_VERSION = os.getenv("DB_GPT_VERSION", "0.6.1") +DB_GPT_VERSION = os.getenv("DB_GPT_VERSION", "0.6.2") BUILD_NO_CACHE = os.getenv("BUILD_NO_CACHE", "true").lower() == "true" LLAMA_CPP_GPU_ACCELERATION = (