open-webui/backend/open_webui/routers/openai.py

776 lines
26 KiB
Python
Raw Normal View History

2024-03-07 00:13:25 +00:00
import asyncio
2024-08-27 22:10:27 +00:00
import hashlib
2024-01-05 00:49:34 +00:00
import json
import logging
2024-08-27 22:10:27 +00:00
from pathlib import Path
from typing import Literal, Optional, overload
2024-03-07 00:13:25 +00:00
2024-08-27 22:10:27 +00:00
import aiohttp
2024-11-22 05:04:35 +00:00
from aiocache import cached
2024-08-27 22:10:27 +00:00
import requests
2024-11-22 05:04:35 +00:00
2024-12-12 01:50:48 +00:00
from fastapi import Depends, FastAPI, HTTPException, Request, APIRouter
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import FileResponse, StreamingResponse
from pydantic import BaseModel
from starlette.background import BackgroundTask
2024-12-10 08:54:13 +00:00
from open_webui.models.models import Models
from open_webui.config import (
2024-03-10 05:47:01 +00:00
CACHE_DIR,
)
from open_webui.env import (
AIOHTTP_CLIENT_TIMEOUT,
AIOHTTP_CLIENT_TIMEOUT_OPENAI_MODEL_LIST,
2024-11-01 15:23:18 +00:00
ENABLE_FORWARD_USER_INFO_HEADERS,
2024-12-02 02:25:44 +00:00
BYPASS_MODEL_ACCESS_CONTROL,
)
2024-09-30 14:32:38 +00:00
from open_webui.constants import ERROR_MESSAGES
2024-11-10 02:01:23 +00:00
from open_webui.env import ENV, SRC_LOG_LEVELS
2024-12-12 01:50:48 +00:00
2024-09-07 02:09:57 +00:00
from open_webui.utils.payload import (
2024-08-27 22:10:27 +00:00
apply_model_params_to_body_openai,
apply_model_system_prompt_to_body,
)
2024-09-07 02:09:57 +00:00
2024-12-09 00:01:56 +00:00
from open_webui.utils.auth import get_admin_user, get_verified_user
2024-11-17 00:51:55 +00:00
from open_webui.utils.access_control import has_access
2024-01-05 00:49:34 +00:00
log = logging.getLogger(__name__)
log.setLevel(SRC_LOG_LEVELS["OPENAI"])
2024-11-10 02:01:23 +00:00
2024-12-12 01:50:48 +00:00
##########################################
#
# Utility functions
#
##########################################
async def send_get_request(url, key=None):
timeout = aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT_OPENAI_MODEL_LIST)
try:
async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
async with session.get(
url, headers={**({"Authorization": f"Bearer {key}"} if key else {})}
) as response:
return await response.json()
except Exception as e:
# Handle connection error here
log.error(f"Connection error: {e}")
return None
async def cleanup_response(
response: Optional[aiohttp.ClientResponse],
session: Optional[aiohttp.ClientSession],
):
if response:
response.close()
if session:
await session.close()
def openai_o1_handler(payload):
"""
Handle O1 specific parameters
"""
if "max_tokens" in payload:
# Remove "max_tokens" from the payload
payload["max_completion_tokens"] = payload["max_tokens"]
del payload["max_tokens"]
# Fix: O1 does not support the "system" parameter, Modify "system" to "user"
if payload["messages"][0]["role"] == "system":
payload["messages"][0]["role"] = "user"
return payload
##########################################
#
# API routes
#
##########################################
router = APIRouter()
@router.get("/config")
async def get_config(request: Request, user=Depends(get_admin_user)):
2024-11-12 05:18:51 +00:00
return {
2024-12-12 01:50:48 +00:00
"ENABLE_OPENAI_API": request.app.state.config.ENABLE_OPENAI_API,
"OPENAI_API_BASE_URLS": request.app.state.config.OPENAI_API_BASE_URLS,
"OPENAI_API_KEYS": request.app.state.config.OPENAI_API_KEYS,
"OPENAI_API_CONFIGS": request.app.state.config.OPENAI_API_CONFIGS,
2024-11-12 05:18:51 +00:00
}
2024-05-17 17:30:22 +00:00
class OpenAIConfigForm(BaseModel):
2024-11-12 05:18:51 +00:00
ENABLE_OPENAI_API: Optional[bool] = None
OPENAI_API_BASE_URLS: list[str]
OPENAI_API_KEYS: list[str]
OPENAI_API_CONFIGS: dict
2024-05-17 17:30:22 +00:00
2024-12-12 01:50:48 +00:00
@router.post("/config/update")
async def update_config(
request: Request, form_data: OpenAIConfigForm, user=Depends(get_admin_user)
):
request.app.state.config.ENABLE_OPENAI_API = form_data.ENABLE_OPENAI_API
request.app.state.config.OPENAI_API_BASE_URLS = form_data.OPENAI_API_BASE_URLS
request.app.state.config.OPENAI_API_KEYS = form_data.OPENAI_API_KEYS
2024-01-05 00:49:34 +00:00
2024-11-12 05:18:51 +00:00
# Check if API KEYS length is same than API URLS length
2024-12-12 01:50:48 +00:00
if len(request.app.state.config.OPENAI_API_KEYS) != len(
request.app.state.config.OPENAI_API_BASE_URLS
2024-11-12 05:18:51 +00:00
):
2024-12-12 01:50:48 +00:00
if len(request.app.state.config.OPENAI_API_KEYS) > len(
request.app.state.config.OPENAI_API_BASE_URLS
2024-11-12 05:18:51 +00:00
):
2024-12-12 01:50:48 +00:00
request.app.state.config.OPENAI_API_KEYS = (
request.app.state.config.OPENAI_API_KEYS[
: len(request.app.state.config.OPENAI_API_BASE_URLS)
]
)
2024-11-12 05:18:51 +00:00
else:
2024-12-12 01:50:48 +00:00
request.app.state.config.OPENAI_API_KEYS += [""] * (
len(request.app.state.config.OPENAI_API_BASE_URLS)
- len(request.app.state.config.OPENAI_API_KEYS)
2024-11-12 05:18:51 +00:00
)
2024-01-05 00:49:34 +00:00
2024-12-12 01:50:48 +00:00
request.app.state.config.OPENAI_API_CONFIGS = form_data.OPENAI_API_CONFIGS
2024-03-07 00:13:25 +00:00
2024-11-12 05:18:51 +00:00
# Remove any extra configs
2024-12-12 01:50:48 +00:00
config_urls = request.app.state.config.OPENAI_API_CONFIGS.keys()
for idx, url in enumerate(request.app.state.config.OPENAI_API_BASE_URLS):
2024-11-12 05:18:51 +00:00
if url not in config_urls:
2024-12-12 01:50:48 +00:00
request.app.state.config.OPENAI_API_CONFIGS.pop(url, None)
2024-03-07 00:13:25 +00:00
2024-11-12 05:18:51 +00:00
return {
2024-12-12 01:50:48 +00:00
"ENABLE_OPENAI_API": request.app.state.config.ENABLE_OPENAI_API,
"OPENAI_API_BASE_URLS": request.app.state.config.OPENAI_API_BASE_URLS,
"OPENAI_API_KEYS": request.app.state.config.OPENAI_API_KEYS,
"OPENAI_API_CONFIGS": request.app.state.config.OPENAI_API_CONFIGS,
2024-11-12 05:18:51 +00:00
}
2024-01-05 00:49:34 +00:00
2024-12-12 01:50:48 +00:00
@router.post("/audio/speech")
async def speech(request: Request, user=Depends(get_verified_user)):
2024-03-07 00:13:25 +00:00
idx = None
try:
2024-12-12 01:50:48 +00:00
idx = request.app.state.config.OPENAI_API_BASE_URLS.index(
"https://api.openai.com/v1"
)
2024-03-07 00:13:25 +00:00
body = await request.body()
name = hashlib.sha256(body).hexdigest()
SPEECH_CACHE_DIR = Path(CACHE_DIR).joinpath("./audio/speech/")
SPEECH_CACHE_DIR.mkdir(parents=True, exist_ok=True)
file_path = SPEECH_CACHE_DIR.joinpath(f"{name}.mp3")
file_body_path = SPEECH_CACHE_DIR.joinpath(f"{name}.json")
# Check if the file already exists in the cache
if file_path.is_file():
return FileResponse(file_path)
2024-12-12 01:50:48 +00:00
url = request.app.state.config.OPENAI_API_BASE_URLS[idx]
2024-03-16 09:45:24 +00:00
r = None
2024-03-07 00:13:25 +00:00
try:
r = requests.post(
2024-12-12 01:50:48 +00:00
url=f"{url}/audio/speech",
2024-03-07 00:13:25 +00:00
data=body,
2024-12-12 01:50:48 +00:00
headers={
"Content-Type": "application/json",
"Authorization": f"Bearer {request.app.state.config.OPENAI_API_KEYS[idx]}",
**(
{
"HTTP-Referer": "https://openwebui.com/",
"X-Title": "Open WebUI",
}
if "openrouter.ai" in url
else {}
),
**(
{
"X-OpenWebUI-User-Name": user.name,
"X-OpenWebUI-User-Id": user.id,
"X-OpenWebUI-User-Email": user.email,
"X-OpenWebUI-User-Role": user.role,
}
if ENABLE_FORWARD_USER_INFO_HEADERS
else {}
),
},
2024-03-07 00:13:25 +00:00
stream=True,
)
2024-02-06 06:51:08 +00:00
2024-03-07 00:13:25 +00:00
r.raise_for_status()
2024-02-06 06:51:08 +00:00
2024-03-07 00:13:25 +00:00
# Save the streaming content to a file
with open(file_path, "wb") as f:
for chunk in r.iter_content(chunk_size=8192):
f.write(chunk)
2024-02-06 06:51:08 +00:00
2024-03-07 00:13:25 +00:00
with open(file_body_path, "w") as f:
json.dump(json.loads(body.decode("utf-8")), f)
2024-02-06 06:57:24 +00:00
2024-03-07 00:13:25 +00:00
# Return the saved file
return FileResponse(file_path)
2024-02-06 06:51:08 +00:00
2024-03-07 00:13:25 +00:00
except Exception as e:
log.exception(e)
2024-12-12 01:50:48 +00:00
detail = None
2024-03-07 00:13:25 +00:00
if r is not None:
try:
res = r.json()
if "error" in res:
2024-12-12 01:50:48 +00:00
detail = f"External: {res['error']}"
2024-08-03 13:24:26 +00:00
except Exception:
2024-12-12 01:50:48 +00:00
detail = f"External: {e}"
2024-03-07 00:13:25 +00:00
2024-03-16 10:25:20 +00:00
raise HTTPException(
2024-12-12 01:50:48 +00:00
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
2024-03-16 10:25:20 +00:00
)
2024-03-07 00:13:25 +00:00
except ValueError:
raise HTTPException(status_code=401, detail=ERROR_MESSAGES.OPENAI_NOT_FOUND)
2024-02-06 06:51:08 +00:00
2024-12-12 01:50:48 +00:00
async def get_all_models_responses(request: Request) -> list:
if not request.app.state.config.ENABLE_OPENAI_API:
2024-08-03 13:24:26 +00:00
return []
# Check if API KEYS length is same than API URLS length
2024-12-12 01:50:48 +00:00
num_urls = len(request.app.state.config.OPENAI_API_BASE_URLS)
num_keys = len(request.app.state.config.OPENAI_API_KEYS)
2024-08-03 13:24:26 +00:00
if num_keys != num_urls:
# if there are more keys than urls, remove the extra keys
if num_keys > num_urls:
2024-12-12 01:50:48 +00:00
new_keys = request.app.state.config.OPENAI_API_KEYS[:num_urls]
request.app.state.config.OPENAI_API_KEYS = new_keys
2024-08-03 13:24:26 +00:00
# if there are more urls than keys, add empty keys
else:
2024-12-12 01:50:48 +00:00
request.app.state.config.OPENAI_API_KEYS += [""] * (num_urls - num_keys)
request_tasks = []
for idx, url in enumerate(request.app.state.config.OPENAI_API_BASE_URLS):
if url not in request.app.state.config.OPENAI_API_CONFIGS:
request_tasks.append(
send_get_request(
f"{url}/models", request.app.state.config.OPENAI_API_KEYS[idx]
)
2024-11-12 05:18:51 +00:00
)
else:
2024-12-12 01:50:48 +00:00
api_config = request.app.state.config.OPENAI_API_CONFIGS.get(url, {})
2024-11-12 05:18:51 +00:00
2024-11-12 06:03:57 +00:00
enable = api_config.get("enable", True)
2024-11-12 05:18:51 +00:00
model_ids = api_config.get("model_ids", [])
2024-11-12 06:03:57 +00:00
if enable:
2024-11-12 05:18:51 +00:00
if len(model_ids) == 0:
2024-12-12 01:50:48 +00:00
request_tasks.append(
send_get_request(
f"{url}/models",
request.app.state.config.OPENAI_API_KEYS[idx],
2024-11-12 05:18:51 +00:00
)
)
else:
model_list = {
"object": "list",
"data": [
{
"id": model_id,
"name": model_id,
"owned_by": "openai",
"openai": {"id": model_id},
"urlIdx": idx,
}
for model_id in model_ids
],
}
2024-12-12 01:50:48 +00:00
request_tasks.append(
asyncio.ensure_future(asyncio.sleep(0, model_list))
)
2024-11-22 04:49:40 +00:00
else:
2024-12-12 01:50:48 +00:00
request_tasks.append(asyncio.ensure_future(asyncio.sleep(0, None)))
2024-08-03 13:24:26 +00:00
2024-12-12 01:50:48 +00:00
responses = await asyncio.gather(*request_tasks)
2024-11-12 05:18:51 +00:00
for idx, response in enumerate(responses):
if response:
2024-12-12 01:50:48 +00:00
url = request.app.state.config.OPENAI_API_BASE_URLS[idx]
api_config = request.app.state.config.OPENAI_API_CONFIGS.get(url, {})
2024-11-12 05:18:51 +00:00
prefix_id = api_config.get("prefix_id", None)
if prefix_id:
2024-11-20 14:12:20 +00:00
for model in (
response if isinstance(response, list) else response.get("data", [])
):
2024-11-12 05:18:51 +00:00
model["id"] = f"{prefix_id}.{model['id']}"
2024-08-03 13:24:26 +00:00
log.debug(f"get_all_models:responses() {responses}")
return responses
2024-12-12 01:50:48 +00:00
async def get_filtered_models(models, user):
# Filter models based on user access control
filtered_models = []
for model in models.get("data", []):
model_info = Models.get_model_by_id(model["id"])
if model_info:
if user.id == model_info.user_id or has_access(
user.id, type="read", access_control=model_info.access_control
):
filtered_models.append(model)
return filtered_models
2024-11-22 05:04:35 +00:00
@cached(ttl=3)
2024-12-12 01:50:48 +00:00
async def get_all_models(request: Request) -> dict[str, list]:
log.info("get_all_models()")
2024-11-16 12:41:07 +00:00
2024-12-12 01:50:48 +00:00
if not request.app.state.config.ENABLE_OPENAI_API:
2024-11-16 12:41:07 +00:00
return {"data": []}
2024-03-11 02:00:43 +00:00
2024-12-12 04:15:23 +00:00
responses = await get_all_models_responses(request)
2024-08-03 13:24:26 +00:00
def extract_data(response):
if response and "data" in response:
return response["data"]
if isinstance(response, list):
return response
return None
2024-03-18 08:11:48 +00:00
2024-12-12 04:15:23 +00:00
def merge_models_lists(model_lists):
log.debug(f"merge_models_lists {model_lists}")
merged_list = []
for idx, models in enumerate(model_lists):
if models is not None and "error" not in models:
merged_list.extend(
[
{
**model,
"name": model.get("name", model["id"]),
"owned_by": "openai",
"openai": model,
"urlIdx": idx,
}
for model in models
if "api.openai.com"
not in request.app.state.config.OPENAI_API_BASE_URLS[idx]
or not any(
name in model["id"]
for name in [
"babbage",
"dall-e",
"davinci",
"embedding",
"tts",
"whisper",
]
)
]
)
return merged_list
2024-08-03 13:24:26 +00:00
models = {"data": merge_models_lists(map(extract_data, responses))}
log.debug(f"models: {models}")
2024-02-06 06:51:08 +00:00
2024-12-12 01:50:48 +00:00
request.app.state.OPENAI_MODELS = {model["id"]: model for model in models["data"]}
return models
2024-12-12 01:50:48 +00:00
@router.get("/models")
@router.get("/models/{url_idx}")
async def get_models(
request: Request, url_idx: Optional[int] = None, user=Depends(get_verified_user)
):
2024-11-16 12:41:07 +00:00
models = {
"data": [],
}
2024-08-03 13:24:26 +00:00
if url_idx is None:
2024-12-12 04:39:55 +00:00
models = await get_all_models(request)
2024-03-07 00:13:25 +00:00
else:
2024-12-12 01:50:48 +00:00
url = request.app.state.config.OPENAI_API_BASE_URLS[url_idx]
key = request.app.state.config.OPENAI_API_KEYS[url_idx]
2024-03-16 09:45:24 +00:00
r = None
2024-12-12 01:50:48 +00:00
async with aiohttp.ClientSession(
timeout=aiohttp.ClientTimeout(
total=AIOHTTP_CLIENT_TIMEOUT_OPENAI_MODEL_LIST
)
) as session:
2024-11-11 22:11:20 +00:00
try:
2024-12-12 01:50:48 +00:00
async with session.get(
f"{url}/models",
headers={
"Authorization": f"Bearer {key}",
"Content-Type": "application/json",
**(
{
"X-OpenWebUI-User-Name": user.name,
"X-OpenWebUI-User-Id": user.id,
"X-OpenWebUI-User-Email": user.email,
"X-OpenWebUI-User-Role": user.role,
}
if ENABLE_FORWARD_USER_INFO_HEADERS
else {}
),
},
) as r:
2024-11-11 22:11:20 +00:00
if r.status != 200:
# Extract response error details if available
error_detail = f"HTTP Error: {r.status}"
res = await r.json()
if "error" in res:
error_detail = f"External Error: {res['error']}"
raise Exception(error_detail)
response_data = await r.json()
# Check if we're calling OpenAI API based on the URL
if "api.openai.com" in url:
# Filter models according to the specified conditions
response_data["data"] = [
2024-11-12 05:18:51 +00:00
model
for model in response_data.get("data", [])
2024-11-11 22:11:20 +00:00
if not any(
name in model["id"]
for name in [
"babbage",
"dall-e",
"davinci",
"embedding",
"tts",
"whisper",
]
)
2024-09-13 18:26:32 +00:00
]
2024-03-07 00:13:25 +00:00
2024-11-16 12:41:07 +00:00
models = response_data
2024-11-11 22:11:20 +00:00
except aiohttp.ClientError as e:
# ClientError covers all aiohttp requests issues
log.exception(f"Client error: {str(e)}")
2024-11-12 05:18:51 +00:00
raise HTTPException(
status_code=500, detail="Open WebUI: Server Connection Error"
)
2024-11-11 22:11:20 +00:00
except Exception as e:
log.exception(f"Unexpected error: {e}")
error_detail = f"Unexpected error: {str(e)}"
raise HTTPException(status_code=500, detail=error_detail)
2024-12-02 02:25:44 +00:00
if user.role == "user" and not BYPASS_MODEL_ACCESS_CONTROL:
2024-12-12 01:50:48 +00:00
models["data"] = get_filtered_models(models, user)
2024-11-16 12:41:07 +00:00
return models
2024-03-07 00:13:25 +00:00
2024-11-12 05:18:51 +00:00
class ConnectionVerificationForm(BaseModel):
url: str
key: str
2024-12-12 01:50:48 +00:00
@router.post("/verify")
2024-11-12 05:18:51 +00:00
async def verify_connection(
form_data: ConnectionVerificationForm, user=Depends(get_admin_user)
):
url = form_data.url
key = form_data.key
2024-12-12 01:50:48 +00:00
async with aiohttp.ClientSession(
timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT_OPENAI_MODEL_LIST)
) as session:
2024-11-12 05:18:51 +00:00
try:
2024-12-12 01:50:48 +00:00
async with session.get(
f"{url}/models",
headers={
"Authorization": f"Bearer {key}",
"Content-Type": "application/json",
},
) as r:
2024-11-12 05:18:51 +00:00
if r.status != 200:
# Extract response error details if available
error_detail = f"HTTP Error: {r.status}"
res = await r.json()
if "error" in res:
error_detail = f"External Error: {res['error']}"
raise Exception(error_detail)
response_data = await r.json()
return response_data
except aiohttp.ClientError as e:
# ClientError covers all aiohttp requests issues
log.exception(f"Client error: {str(e)}")
raise HTTPException(
status_code=500, detail="Open WebUI: Server Connection Error"
)
except Exception as e:
log.exception(f"Unexpected error: {e}")
error_detail = f"Unexpected error: {str(e)}"
raise HTTPException(status_code=500, detail=error_detail)
2024-02-06 06:51:08 +00:00
2024-12-12 01:50:48 +00:00
@router.post("/chat/completions")
2024-06-09 19:43:54 +00:00
async def generate_chat_completion(
2024-12-12 01:50:48 +00:00
request: Request,
2024-09-27 17:43:40 +00:00
form_data: dict,
user=Depends(get_verified_user),
2024-11-13 11:09:46 +00:00
bypass_filter: Optional[bool] = False,
2024-06-09 19:43:54 +00:00
):
2024-12-21 23:29:48 +00:00
if BYPASS_MODEL_ACCESS_CONTROL:
bypass_filter = True
2024-03-07 00:13:25 +00:00
idx = 0
2024-06-09 19:43:54 +00:00
payload = {**form_data}
2024-08-07 13:49:48 +00:00
if "metadata" in payload:
2024-08-07 13:52:03 +00:00
del payload["metadata"]
2024-06-09 19:43:54 +00:00
model_id = form_data.get("model")
model_info = Models.get_model_by_id(model_id)
2024-05-25 09:05:05 +00:00
2024-11-16 12:41:07 +00:00
# Check model info and override the payload
2024-06-09 19:43:54 +00:00
if model_info:
if model_info.base_model_id:
payload["model"] = model_info.base_model_id
2024-12-21 23:29:48 +00:00
model_id = model_info.base_model_id
2024-05-25 09:05:05 +00:00
2024-08-03 13:24:26 +00:00
params = model_info.params.model_dump()
2024-08-06 10:31:45 +00:00
payload = apply_model_params_to_body_openai(params, payload)
2024-08-03 13:24:26 +00:00
payload = apply_model_system_prompt_to_body(params, payload, user)
2024-05-29 18:28:42 +00:00
2024-11-16 12:41:07 +00:00
# Check if user has access to the model
2024-11-17 10:51:57 +00:00
if not bypass_filter and user.role == "user":
if not (
user.id == model_info.user_id
or has_access(
user.id, type="read", access_control=model_info.access_control
)
):
raise HTTPException(
status_code=403,
detail="Model not found",
)
2024-11-18 15:40:37 +00:00
elif not bypass_filter:
2024-11-18 03:15:09 +00:00
if user.role != "admin":
raise HTTPException(
status_code=403,
detail="Model not found",
)
2024-11-16 12:41:07 +00:00
2024-12-12 01:50:48 +00:00
model = request.app.state.OPENAI_MODELS.get(model_id)
2024-11-16 12:41:07 +00:00
if model:
2024-11-15 11:00:18 +00:00
idx = model["urlIdx"]
2024-11-16 12:41:07 +00:00
else:
raise HTTPException(
status_code=404,
detail="Model not found",
)
2024-05-29 18:28:42 +00:00
2024-11-16 12:41:07 +00:00
# Get the API config for the model
2024-12-12 01:50:48 +00:00
api_config = request.app.state.config.OPENAI_API_CONFIGS.get(
request.app.state.config.OPENAI_API_BASE_URLS[idx], {}
2024-11-12 05:18:51 +00:00
)
2024-12-12 01:50:48 +00:00
prefix_id = api_config.get("prefix_id", None)
2024-11-12 05:18:51 +00:00
if prefix_id:
payload["model"] = payload["model"].replace(f"{prefix_id}.", "")
2024-11-16 12:41:07 +00:00
# Add user info to the payload if the model is a pipeline
2024-06-09 19:43:54 +00:00
if "pipeline" in model and model.get("pipeline"):
2024-06-20 10:45:13 +00:00
payload["user"] = {
"name": user.name,
"id": user.id,
"email": user.email,
"role": user.role,
}
2024-05-29 18:28:42 +00:00
2024-12-12 01:50:48 +00:00
url = request.app.state.config.OPENAI_API_BASE_URLS[idx]
key = request.app.state.config.OPENAI_API_KEYS[idx]
2024-11-16 12:41:07 +00:00
# Fix: O1 does not support the "max_tokens" parameter, Modify "max_tokens" to "max_completion_tokens"
is_o1 = payload["model"].lower().startswith("o1-")
2024-12-12 01:50:48 +00:00
if is_o1:
payload = openai_o1_handler(payload)
elif "api.openai.com" not in url:
2024-12-20 03:05:20 +00:00
# Remove "max_completion_tokens" from the payload for backward compatibility
if "max_completion_tokens" in payload:
payload["max_tokens"] = payload["max_completion_tokens"]
del payload["max_completion_tokens"]
2024-12-25 23:46:49 +00:00
if "max_tokens" in payload and "max_completion_tokens" in payload:
del payload["max_tokens"]
2024-06-09 19:43:54 +00:00
# Convert the modified body back to JSON
payload = json.dumps(payload)
2024-05-25 09:05:05 +00:00
2024-06-09 19:43:54 +00:00
r = None
session = None
streaming = False
2024-09-19 14:20:00 +00:00
response = None
2024-06-09 19:43:54 +00:00
try:
session = aiohttp.ClientSession(
trust_env=True, timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT)
)
2024-12-12 01:50:48 +00:00
2024-06-09 19:43:54 +00:00
r = await session.request(
method="POST",
url=f"{url}/chat/completions",
data=payload,
2024-12-12 01:50:48 +00:00
headers={
"Authorization": f"Bearer {key}",
"Content-Type": "application/json",
**(
{
"HTTP-Referer": "https://openwebui.com/",
"X-Title": "Open WebUI",
}
if "openrouter.ai" in url
else {}
),
**(
{
"X-OpenWebUI-User-Name": user.name,
"X-OpenWebUI-User-Id": user.id,
"X-OpenWebUI-User-Email": user.email,
"X-OpenWebUI-User-Role": user.role,
}
if ENABLE_FORWARD_USER_INFO_HEADERS
else {}
),
},
2024-06-09 19:43:54 +00:00
)
2024-03-07 00:13:25 +00:00
2024-06-09 19:43:54 +00:00
# Check if response is SSE
if "text/event-stream" in r.headers.get("Content-Type", ""):
streaming = True
return StreamingResponse(
r.content,
status_code=r.status,
headers=dict(r.headers),
background=BackgroundTask(
cleanup_response, response=r, session=session
),
)
else:
2024-09-19 14:20:00 +00:00
try:
response = await r.json()
except Exception as e:
log.error(e)
response = await r.text()
r.raise_for_status()
return response
2024-06-09 19:43:54 +00:00
except Exception as e:
log.exception(e)
2024-12-12 01:50:48 +00:00
detail = None
2024-09-19 14:20:00 +00:00
if isinstance(response, dict):
if "error" in response:
2024-12-12 01:50:48 +00:00
detail = f"{response['error']['message'] if 'message' in response['error'] else response['error']}"
2024-09-19 14:20:00 +00:00
elif isinstance(response, str):
2024-12-12 01:50:48 +00:00
detail = response
2024-09-19 14:20:00 +00:00
2024-12-12 01:50:48 +00:00
raise HTTPException(
status_code=r.status if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
)
2024-06-09 19:43:54 +00:00
finally:
if not streaming and session:
if r:
r.close()
await session.close()
2024-12-12 01:50:48 +00:00
@router.api_route("/{path:path}", methods=["GET", "POST", "PUT", "DELETE"])
2024-06-09 19:43:54 +00:00
async def proxy(path: str, request: Request, user=Depends(get_verified_user)):
2024-12-12 01:50:48 +00:00
"""
Deprecated: proxy all requests to OpenAI API
"""
2024-06-09 19:43:54 +00:00
body = await request.body()
2024-05-25 09:05:05 +00:00
2024-12-12 01:50:48 +00:00
idx = 0
url = request.app.state.config.OPENAI_API_BASE_URLS[idx]
key = request.app.state.config.OPENAI_API_KEYS[idx]
2024-01-05 00:49:34 +00:00
2024-03-16 09:45:24 +00:00
r = None
session = None
streaming = False
2024-03-16 09:45:24 +00:00
2024-01-05 00:49:34 +00:00
try:
session = aiohttp.ClientSession(trust_env=True)
r = await session.request(
2024-06-02 18:40:18 +00:00
method=request.method,
2024-12-12 01:50:48 +00:00
url=f"{url}/{path}",
2024-06-09 19:43:54 +00:00
data=body,
2024-12-12 01:50:48 +00:00
headers={
"Authorization": f"Bearer {key}",
"Content-Type": "application/json",
**(
{
"X-OpenWebUI-User-Name": user.name,
"X-OpenWebUI-User-Id": user.id,
"X-OpenWebUI-User-Email": user.email,
"X-OpenWebUI-User-Role": user.role,
}
if ENABLE_FORWARD_USER_INFO_HEADERS
else {}
),
},
2024-01-05 00:49:34 +00:00
)
r.raise_for_status()
2024-01-05 02:38:03 +00:00
# Check if response is SSE
if "text/event-stream" in r.headers.get("Content-Type", ""):
streaming = True
2024-01-05 02:38:03 +00:00
return StreamingResponse(
r.content,
status_code=r.status,
2024-01-05 02:38:03 +00:00
headers=dict(r.headers),
background=BackgroundTask(
cleanup_response, response=r, session=session
),
2024-01-05 02:38:03 +00:00
)
else:
response_data = await r.json()
2024-01-05 02:38:03 +00:00
return response_data
2024-12-12 01:50:48 +00:00
2024-01-05 00:49:34 +00:00
except Exception as e:
log.exception(e)
2024-12-12 01:50:48 +00:00
detail = None
2024-01-05 00:49:34 +00:00
if r is not None:
try:
res = await r.json()
2024-05-29 18:28:42 +00:00
print(res)
2024-01-05 00:49:34 +00:00
if "error" in res:
2024-12-12 01:50:48 +00:00
detail = f"External: {res['error']['message'] if 'message' in res['error'] else res['error']}"
2024-08-03 13:24:26 +00:00
except Exception:
2024-12-12 01:50:48 +00:00
detail = f"External: {e}"
raise HTTPException(
status_code=r.status if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
)
finally:
if not streaming and session:
if r:
r.close()
await session.close()