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

chore:v0.6.2 tag #2148

Merged
merged 1 commit into from
Nov 22, 2024
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.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

## 特徴

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file modified assets/wechat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion dbgpt/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.6.1"
version = "0.6.2"
2 changes: 1 addition & 1 deletion dbgpt/rag/knowledge/pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = (
Expand Down
Loading