This commit is contained in:
Timothy Jaeryang Baek
2026-01-08 00:53:21 +04:00
parent e67891a374
commit aa084f804d
3 changed files with 3 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ import aiohttp
from typing import Optional
from backend.open_webui.env import AIOHTTP_CLIENT_TIMEOUT
from open_webui.env import AIOHTTP_CLIENT_TIMEOUT
from open_webui.utils.auth import get_admin_user, get_verified_user
from open_webui.config import get_config, save_config
from open_webui.config import BannerModel

View File

@@ -6,7 +6,7 @@ import aiohttp
from pathlib import Path
from typing import Optional
from backend.open_webui.env import AIOHTTP_CLIENT_TIMEOUT
from open_webui.env import AIOHTTP_CLIENT_TIMEOUT
from open_webui.models.functions import (
FunctionForm,
FunctionModel,

View File

@@ -4,6 +4,7 @@ from typing import Optional
import time
import re
import aiohttp
from open_webui.env import AIOHTTP_CLIENT_TIMEOUT
from open_webui.models.groups import Groups
from pydantic import BaseModel, HttpUrl
from fastapi import APIRouter, Depends, HTTPException, Request, status