mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 16:59:42 +00:00
refac: add embedding metadata
This commit is contained in:
parent
5c48fce382
commit
333317a7ce
@ -698,7 +698,13 @@ def save_docs_to_vector_db(
|
||||
"id": str(uuid.uuid4()),
|
||||
"text": text,
|
||||
"vector": embeddings[idx],
|
||||
"metadata": metadatas[idx],
|
||||
"metadata": {
|
||||
**metadatas[idx],
|
||||
"embedding": {
|
||||
"engine": app.state.config.RAG_EMBEDDING_ENGINE,
|
||||
"model": app.state.config.RAG_EMBEDDING_MODEL,
|
||||
},
|
||||
},
|
||||
}
|
||||
for idx, text in enumerate(texts)
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user