diff --git a/docs/docs/operation_manual/advanced_tutorial/debugging.md b/docs/docs/application_manual/advanced_tutorial/debugging.md similarity index 100% rename from docs/docs/operation_manual/advanced_tutorial/debugging.md rename to docs/docs/application_manual/advanced_tutorial/debugging.md diff --git a/docs/docs/operation_manual/advanced_tutorial/rag.md b/docs/docs/application_manual/advanced_tutorial/rag.md similarity index 100% rename from docs/docs/operation_manual/advanced_tutorial/rag.md rename to docs/docs/application_manual/advanced_tutorial/rag.md diff --git a/docs/docs/operation_manual/advanced_tutorial/smmf.md b/docs/docs/application_manual/advanced_tutorial/smmf.md similarity index 100% rename from docs/docs/operation_manual/advanced_tutorial/smmf.md rename to docs/docs/application_manual/advanced_tutorial/smmf.md diff --git a/docs/docs/operation_manual/fine_tuning_manual/text_to_sql.md b/docs/docs/application_manual/fine_tuning_manual/text_to_sql.md similarity index 100% rename from docs/docs/operation_manual/fine_tuning_manual/text_to_sql.md rename to docs/docs/application_manual/fine_tuning_manual/text_to_sql.md diff --git a/docs/docs/operation_manual/started_tutorial/agent.md b/docs/docs/application_manual/started_tutorial/agent.md similarity index 100% rename from docs/docs/operation_manual/started_tutorial/agent.md rename to docs/docs/application_manual/started_tutorial/agent.md diff --git a/docs/docs/operation_manual/started_tutorial/chat_dashboard.md b/docs/docs/application_manual/started_tutorial/chat_dashboard.md similarity index 100% rename from docs/docs/operation_manual/started_tutorial/chat_dashboard.md rename to docs/docs/application_manual/started_tutorial/chat_dashboard.md diff --git a/docs/docs/operation_manual/started_tutorial/chat_data.md b/docs/docs/application_manual/started_tutorial/chat_data.md similarity index 100% rename from docs/docs/operation_manual/started_tutorial/chat_data.md rename to docs/docs/application_manual/started_tutorial/chat_data.md diff --git a/docs/docs/operation_manual/started_tutorial/chat_db.md b/docs/docs/application_manual/started_tutorial/chat_db.md similarity index 100% rename from docs/docs/operation_manual/started_tutorial/chat_db.md rename to docs/docs/application_manual/started_tutorial/chat_db.md diff --git a/docs/docs/operation_manual/started_tutorial/chat_excel.md b/docs/docs/application_manual/started_tutorial/chat_excel.md similarity index 100% rename from docs/docs/operation_manual/started_tutorial/chat_excel.md rename to docs/docs/application_manual/started_tutorial/chat_excel.md diff --git a/docs/docs/operation_manual/started_tutorial/chat_knowledge.md b/docs/docs/application_manual/started_tutorial/chat_knowledge.md similarity index 99% rename from docs/docs/operation_manual/started_tutorial/chat_knowledge.md rename to docs/docs/application_manual/started_tutorial/chat_knowledge.md index 6dae5b03f..24ffc37aa 100644 --- a/docs/docs/operation_manual/started_tutorial/chat_knowledge.md +++ b/docs/docs/application_manual/started_tutorial/chat_knowledge.md @@ -27,10 +27,9 @@ Select the knowledge base, click the `Create` button, and fill in the necessary
- +
- ### Upload documents Document addition currently supports multiple types, such as plain text, URL crawling, and various document types such as PDF, Word, and Markdown. Select a specific document to `upload`. diff --git a/docs/docs/installation/sourcecode.md b/docs/docs/installation/sourcecode.md index 4ceeb9cf7..14e50bb69 100644 --- a/docs/docs/installation/sourcecode.md +++ b/docs/docs/installation/sourcecode.md @@ -26,7 +26,7 @@ git clone https://github.com/eosphoros-ai/DB-GPT.git ### Miniconda environment installation -- The default database uses SQLite, so there is no need to install a database in the default startup mode. If you need to use other databases, you can read the [advanced tutorials](/docs/operation_manual/advanced_tutorial) below. We recommend installing the Python virtual environment through the conda virtual environment. For the installation of Miniconda environment, please refer to the [Miniconda installation tutorial](https://docs.conda.io/projects/miniconda/en/latest/). +- The default database uses SQLite, so there is no need to install a database in the default startup mode. If you need to use other databases, you can read the [advanced tutorials](/docs/application_manual/advanced_tutorial) below. We recommend installing the Python virtual environment through the conda virtual environment. For the installation of Miniconda environment, please refer to the [Miniconda installation tutorial](https://docs.conda.io/projects/miniconda/en/latest/). :::tip Create a Python virtual environment diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md index cb2cad58a..e953ed2c3 100644 --- a/docs/docs/quickstart.md +++ b/docs/docs/quickstart.md @@ -1,7 +1,6 @@ --- sidebar_position: 0 --- - # Quickstart DB-GPT supports the installation and use of a variety of open source and closed models. Different models have different requirements for environment and resources. If localized model deployment is required, GPU resources are required for deployment. The API proxy model requires relatively few resources and can be deployed and started on a CPU machine. @@ -27,7 +26,7 @@ git clone https://github.com/eosphoros-ai/DB-GPT.git ### Miniconda environment installation -- The default database uses SQLite, so there is no need to install a database in the default startup mode. If you need to use other databases, you can read the [advanced tutorials](/docs/operation_manual/advanced_tutorial/rag) below. We recommend installing the Python virtual environment through the conda virtual environment. For the installation of Miniconda environment, please refer to the [Miniconda installation tutorial](https://docs.conda.io/projects/miniconda/en/latest/). +- The default database uses SQLite, so there is no need to install a database in the default startup mode. If you need to use other databases, you can read the [advanced tutorials](/docs/application_manual/advanced_tutorial/rag) below. We recommend installing the Python virtual environment through the conda virtual environment. For the installation of Miniconda environment, please refer to the [Miniconda installation tutorial](https://docs.conda.io/projects/miniconda/en/latest/). :::tip Create a Python virtual environment @@ -56,8 +55,18 @@ cp .env.template .env Provide two deployment methods to quickly start experiencing DB-GPT. ::: +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +