chore: remove .plugin.env.template (#884)

Co-authored-by: junewgl <1965259211@qq.com>
This commit is contained in:
magic.chen 2023-12-04 21:37:21 +08:00 committed by GitHub
parent 8ae467109a
commit b12a858d53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 18 deletions

View File

@ -1,14 +0,0 @@
####################################################################################
## [DB-GPT-Bytebase-Plugin] ###
#####################################################################################
HOST_NAME={your-host-ip, to execute command operate}
HOST_USER=root
HOST_PASSWORD={your-host-password}
SSH_PORT=22
BYTE_BASE_COOKIE={your-bytebase-cookie}
BYTE_BASE_DOMAIN={your-bytebase-server-address}
BYTE_BASE_DEFAULT_DEV_INSTANCE=mysql_dev
BYTE_BASE_DEFAULT_TEST_INSTANCE=mysql_test
BYTE_BASE_DEFAULT_PROD_INSTANCE=mysql_prod
DEFAULT_PROJECT_NAME={your-default-project}

View File

@ -8,8 +8,6 @@ class VectorStoreConnector:
"""VectorStoreConnector, can connect different vector db provided load document api_v1 and similar search api_v1.
1.load_document:knowledge document source into vector store.(Chroma, Milvus, Weaviate)
2.similar_search: similarity search from vector_store
how to use reference:https://db-gpt.readthedocs.io/en/latest/modules/vector.html
how to integrate:https://db-gpt.readthedocs.io/en/latest/modules/vector/milvus/milvus.html
"""

View File

@ -1 +0,0 @@
PUT ZIP PLUGINs TO THIS DIR

View File

@ -1,6 +1,6 @@
from pilot import EmbeddingEngine, KnowledgeType
url = "https://db-gpt.readthedocs.io/en/latest/getting_started/getting_started.html"
url = "https://docs.dbgpt.site/docs/overview"
embedding_model = "your_embedding_model"
vector_store_type = "Chroma"
chroma_persist_path = "your_persist_path"