fix: add missing env var parameter pass through for enable async embedding (#19748)

* Add enable_async parameter to embedding function

* Add enable_async parameter to RAG configuration
This commit is contained in:
Classic298 2025-12-04 20:59:09 +01:00 committed by GitHub
parent d27e019af3
commit 1779090bdb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -1031,6 +1031,7 @@ app.state.EMBEDDING_FUNCTION = get_embedding_function(
if app.state.config.RAG_EMBEDDING_ENGINE == "azure_openai"
else None
),
enable_async=app.state.config.ENABLE_ASYNC_EMBEDDING,
)
app.state.RERANKING_FUNCTION = get_reranking_function(

View file

@ -1401,6 +1401,7 @@ def save_docs_to_vector_db(
if request.app.state.config.RAG_EMBEDDING_ENGINE == "azure_openai"
else None
),
enable_async=request.app.state.config.ENABLE_ASYNC_EMBEDDING,
)
# Run async embedding in sync context