test:add document embedding and url embedding test

This commit is contained in:
aries_ckt
2023-08-02 15:55:16 +08:00
parent f270283091
commit bc2db7347e
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
from pilot import EmbeddingEngine, KnowledgeType
embedding_model = "your_embedding_model"
vector_store_type = "Chroma"
chroma_persist_path = "your_persist_path"
vector_store_config = {
"vector_store_name": "document_test",
"vector_store_type": vector_store_type,
"chroma_persist_path": chroma_persist_path,
}
# it can be .md,.pdf,.docx, .csv, .html
document_path = "your_path/test.md"
embedding_engine = EmbeddingEngine(
knowledge_source=document_path,
knowledge_type=KnowledgeType.DOCUMENT.value,
model_name=embedding_model,
vector_store_config=vector_store_config)
# embedding document content to vector store
embedding_engine.knowledge_embedding()

View File

@@ -1,7 +1,7 @@
from pilot import EmbeddingEngine, KnowledgeType
url = "https://db-gpt.readthedocs.io/en/latest/getting_started/getting_started.html"
embedding_model = "text2vec"
embedding_model = "your_embedding_model"
vector_store_type = "Chroma"
chroma_persist_path = "your_persist_path"
vector_store_config = {