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
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(