mirror of
https://github.com/open-webui/open-webui.git
synced 2026-02-24 20:19:42 +01:00
refac
This commit is contained in:
@@ -783,6 +783,17 @@ AIOHTTP_CLIENT_SESSION_TOOL_SERVER_SSL = (
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
RAG_EMBEDDING_TIMEOUT = os.environ.get("RAG_EMBEDDING_TIMEOUT", "")
|
||||||
|
|
||||||
|
if RAG_EMBEDDING_TIMEOUT == "":
|
||||||
|
RAG_EMBEDDING_TIMEOUT = None
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
RAG_EMBEDDING_TIMEOUT = int(RAG_EMBEDDING_TIMEOUT)
|
||||||
|
except Exception:
|
||||||
|
RAG_EMBEDDING_TIMEOUT = None
|
||||||
|
|
||||||
|
|
||||||
####################################
|
####################################
|
||||||
# SENTENCE TRANSFORMERS
|
# SENTENCE TRANSFORMERS
|
||||||
####################################
|
####################################
|
||||||
|
|||||||
@@ -110,6 +110,7 @@ from open_webui.config import (
|
|||||||
from open_webui.env import (
|
from open_webui.env import (
|
||||||
DEVICE_TYPE,
|
DEVICE_TYPE,
|
||||||
DOCKER,
|
DOCKER,
|
||||||
|
RAG_EMBEDDING_TIMEOUT,
|
||||||
SENTENCE_TRANSFORMERS_BACKEND,
|
SENTENCE_TRANSFORMERS_BACKEND,
|
||||||
SENTENCE_TRANSFORMERS_MODEL_KWARGS,
|
SENTENCE_TRANSFORMERS_MODEL_KWARGS,
|
||||||
SENTENCE_TRANSFORMERS_CROSS_ENCODER_BACKEND,
|
SENTENCE_TRANSFORMERS_CROSS_ENCODER_BACKEND,
|
||||||
@@ -1592,8 +1593,7 @@ def save_docs_to_vector_db(
|
|||||||
|
|
||||||
# Run async embedding in sync context using the main event loop
|
# Run async embedding in sync context using the main event loop
|
||||||
# This allows the main loop to stay responsive to health checks during long operations
|
# This allows the main loop to stay responsive to health checks during long operations
|
||||||
embedding_timeout_str = os.environ.get("RAG_EMBEDDING_TIMEOUT")
|
embedding_timeout = RAG_EMBEDDING_TIMEOUT
|
||||||
embedding_timeout = int(embedding_timeout_str) if embedding_timeout_str else None
|
|
||||||
|
|
||||||
future = asyncio.run_coroutine_threadsafe(
|
future = asyncio.run_coroutine_threadsafe(
|
||||||
embedding_function(
|
embedding_function(
|
||||||
|
|||||||
Reference in New Issue
Block a user