mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
refac: add embedding metadata
This commit is contained in:
parent
5c48fce382
commit
333317a7ce
1 changed files with 7 additions and 1 deletions
|
|
@ -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 a new issue