chore:v0.6.2 tag (#2148)

This commit is contained in:
Aries-ckt 2024-11-22 11:29:46 +08:00 committed by GitHub
parent 0580a54a10
commit 5203145b2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 5 additions and 5 deletions

View File

@ -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)
## 特徴

View File

@ -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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 118 KiB

View File

@ -1 +1 @@
version = "0.6.1"
version = "0.6.2"

View File

@ -138,7 +138,7 @@ class PDFKnowledge(Knowledge):
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")

View File

@ -20,7 +20,7 @@ with open("README.md", mode="r", encoding="utf-8") as fh:
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 = (