diff --git a/docs/docs/installation/integrations.md b/docs/docs/installation/integrations.md index f9c430b5c..5affd4bba 100644 --- a/docs/docs/installation/integrations.md +++ b/docs/docs/installation/integrations.md @@ -10,16 +10,16 @@ Integration Packages | Provider | Supported | Install Packages | |-------------|-----------|----------------------| -| MySQL | ✅ | --extra datasource_mysql | -| OceanBase | ✅ | | -| ClickHouse | ✅ | --extra datasource_clickhouse | -| Hive | ✅ | --extra datasource_hive | -| MSSQL | ✅ | --extra datasource_mssql | -| PostgreSQL | ✅ | --extra datasource_postgres | -| ApacheDoris | ✅ | | -| StarRocks | ✅ | --extra datasource_starroks | -| Spark | ✅ | --extra datasource_spark | -| Oracle | ❌ | | +| MySQL | ✅ | --extra datasource_mysql | +| OceanBase | ✅ | | +| ClickHouse | ✅ | --extra datasource_clickhouse | +| Hive | ✅ | --extra datasource_hive | +| MSSQL | ✅ | --extra datasource_mssql | +| PostgreSQL | ✅ | --extra datasource_postgres | +| ApacheDoris | ✅ | | +| StarRocks | ✅ | --extra datasource_starroks | +| Spark | ✅ | --extra datasource_spark | +| Oracle | ✅ | --extra datasource_oracle | # RAG Storage Providers diff --git a/docs/docs/installation/integrations/clickhouse_install.md b/docs/docs/installation/integrations/clickhouse_install.md index 55b899023..dba84398c 100644 --- a/docs/docs/installation/integrations/clickhouse_install.md +++ b/docs/docs/installation/integrations/clickhouse_install.md @@ -21,7 +21,7 @@ Prepare ClickHouse database service, reference-[ClickHouse Installation](https:/ Then run the following command to start the webserver: ```bash -uv run python packages/dbgpt-app/src/dbgpt_app/dbgpt_server.py --config configs/dbgpt-proxy-openai.toml +uv run dbgpt start webserver --config configs/dbgpt-proxy-openai.toml ``` Optionally, you can also use the following command to start the webserver: diff --git a/docs/docs/installation/integrations/duckdb_install.md b/docs/docs/installation/integrations/duckdb_install.md index ef2b649ed..763a31416 100644 --- a/docs/docs/installation/integrations/duckdb_install.md +++ b/docs/docs/installation/integrations/duckdb_install.md @@ -25,7 +25,7 @@ Prepare DuckDB database service, reference-[DuckDB Installation](https://duckdb. Then run the following command to start the webserver: ```bash -uv run python packages/dbgpt-app/src/dbgpt_app/dbgpt_server.py --config configs/dbgpt-proxy-openai.toml +uv run dbgpt start webserver --config configs/dbgpt-proxy-openai.toml ``` diff --git a/docs/docs/installation/integrations/mssql_install.md b/docs/docs/installation/integrations/mssql_install.md index 441d72120..84badea19 100644 --- a/docs/docs/installation/integrations/mssql_install.md +++ b/docs/docs/installation/integrations/mssql_install.md @@ -23,7 +23,7 @@ Prepare MSSQL database service, reference-[MSSQL Installation](https://docs.micr Then run the following command to start the webserver: ```bash -uv run python packages/dbgpt-app/src/dbgpt_app/dbgpt_server.py --config configs/dbgpt-proxy-openai.toml +uv run dbgpt start webserver --config configs/dbgpt-proxy-openai.toml ``` Optionally, you can also use the following command to start the webserver: diff --git a/docs/docs/installation/integrations/oracle_install.md b/docs/docs/installation/integrations/oracle_install.md new file mode 100644 index 000000000..9dbaf560f --- /dev/null +++ b/docs/docs/installation/integrations/oracle_install.md @@ -0,0 +1,38 @@ +# Oracle + +In this example, we will show how to use the Oracle as in DB-GPT Datasource. Using Oracle to implement Datasource can, to some extent, alleviate the uncertainty and interpretability issues brought about by vector database retrieval. + +### Install Dependencies + +First, you need to install the `dbgpt oracle datasource` library. + +```bash + +uv sync --all-packages \ +--extra "base" \ +--extra "datasource_oracle" \ +--extra "rag" \ +--extra "storage_chromadb" \ +--extra "dbgpts" +``` + +### Prepare Oracle + +Prepare Oracle database service, reference-[Oracle Installation](https://docs.oracle.com/en/database/oracle/oracle-database/index.html). + +Then run the following command to start the webserver: +```bash + +uv run dbgpt start webserver --config configs/dbgpt-proxy-openai.toml +``` + +Optionally, you can also use the following command to start the webserver: +```bash + +uv run python packages/dbgpt-app/src/dbgpt_app/dbgpt_server.py --config configs/dbgpt-proxy-openai.toml +``` + +### Oracle Configuration +
+
+