|
@@ -18,7 +18,10 @@ from open_webui.config import (
|
|
|
OPENAI_API_KEYS,
|
|
|
AppConfig,
|
|
|
)
|
|
|
-from open_webui.env import AIOHTTP_CLIENT_TIMEOUT, OPENAI_MODEL_LIST_TIMEOUT
|
|
|
+from open_webui.env import (
|
|
|
+ AIOHTTP_CLIENT_TIMEOUT,
|
|
|
+ AIOHTTP_CLIENT_TIMEOUT_OPENAI_MODEL_LIST,
|
|
|
+)
|
|
|
|
|
|
from open_webui.constants import ERROR_MESSAGES
|
|
|
from open_webui.env import SRC_LOG_LEVELS
|
|
@@ -179,7 +182,7 @@ async def speech(request: Request, user=Depends(get_verified_user)):
|
|
|
|
|
|
|
|
|
async def fetch_url(url, key):
|
|
|
- timeout = aiohttp.ClientTimeout(total=OPENAI_MODEL_LIST_TIMEOUT)
|
|
|
+ timeout = aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT_OPENAI_MODEL_LIST)
|
|
|
try:
|
|
|
headers = {"Authorization": f"Bearer {key}"}
|
|
|
async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
|