Skip to content

Commit

Permalink
chore:add v0.5.10 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Aries-ckt committed Jul 25, 2024
1 parent 21460e4 commit 0a1c5a7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 16 deletions.
2 changes: 1 addition & 1 deletion dbgpt/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.5.9"
version = "0.5.10"
22 changes: 8 additions & 14 deletions docs/docs/application/started_tutorial/chat_financial_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ scene3:analyze financial report

# How to Install

Step 1: upgrade `knowledge_space`
```sql
USE dbgpt;
ALTER TABLE knowledge_space
ADD COLUMN `domain_type` varchar(50) null comment 'space domain type' after `vector_type`;
Step 1: make sure your dbgpt version is >=0.5.10
```
Step 2: upgrade python dependencies
```
Expand All @@ -43,11 +39,10 @@ Step 3: install financial report app from dbgpts
```
# install poetry
pip install poetry
# install financial report knowledge process pipeline workflow
dbgpt app install financial-report-knowledge-factory

# install financial report chat pipeline workflow
dbgpt app install financial-robot-app
# install financial report knowledge process pipeline workflow and financial-robot-app workflow
dbgpt app install financial-robot-app financial-report-knowledge-factory

```
Step4:
Expand All @@ -62,16 +57,15 @@ git clone https://www.modelscope.cn/models/AI-ModelScope/bge-large-zh-v1.5
#*******************************************************************#
FIN_REPORT_MODEL=/app/DB-GPT/models/bge-large-zh-v1.5
```
Step 4: restart dbgpt_server
Step 5: create FinancialReport knowledge space
Step 4: create FinancialReport knowledge space
![image](https://github.com/user-attachments/assets/90d938f0-e09f-49f2-8f8b-fa69ef6f8ae6)
Step 6: upload financial report from `docker/examples/fin_report`
Step 5: upload financial report from `docker/examples/fin_report`
![upload_report](https://github.com/eosphoros-ai/DB-GPT/assets/13723926/4630f226-4bd6-4645-858a-bd3cde4e4789)
Step 7: automatic segment and wait for a while
Step 6: automatic segment and wait for a while
![process_log](https://github.com/eosphoros-ai/DB-GPT/assets/13723926/0506dd86-4089-4ba4-8589-b617afc0eafe)
Step 8: chat with financial report
Step 7: chat with financial report
Binary file modified docs/static/img/chat_knowledge/fin_report/financial_space.png
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 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.5.9")
DB_GPT_VERSION = os.getenv("DB_GPT_VERSION", "0.5.10")

BUILD_NO_CACHE = os.getenv("BUILD_NO_CACHE", "true").lower() == "true"
LLAMA_CPP_GPU_ACCELERATION = (
Expand Down

0 comments on commit 0a1c5a7

Please sign in to comment.