| from typing import Optional |
|
|
| from open_webui.apps.webui.models.models import ( |
| ModelForm, |
| ModelModel, |
| ModelResponse, |
| ModelUserResponse, |
| Models, |
| ) |
| from open_webui.constants import ERROR_MESSAGES |
| from fastapi import APIRouter, Depends, HTTPException, Request, status |
|
|
|
|
| from open_webui.utils.utils import get_admin_user, get_verified_user |
| from open_webui.utils.access_control import has_access, has_permission |
|
|
|
|
| router = APIRouter() |
|
|
|
|
| |
| |
| |
|
|
|
|
| @router.get("/", response_model=list[ModelUserResponse]) |
| async def get_models(id: Optional[str] = None, user=Depends(get_verified_user)): |
| if user.role == "admin": |
| return Models.get_models() |
| else: |
| return Models.get_models_by_user_id(user.id) |
|
|
|
|
| |
| |
| |
|
|
|
|
| @router.get("/base", response_model=list[ModelResponse]) |
| async def get_base_models(user=Depends(get_admin_user)): |
| return Models.get_base_models() |
|
|
|
|
| |
| |
| |
|
|
|
|
| @router.post("/create", response_model=Optional[ModelModel]) |
| async def create_new_model( |
| request: Request, |
| form_data: ModelForm, |
| user=Depends(get_verified_user), |
| ): |
| if user.role != "admin" and not has_permission( |
| user.id, "workspace.models", request.app.state.config.USER_PERMISSIONS |
| ): |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.UNAUTHORIZED, |
| ) |
|
|
| model = Models.get_model_by_id(form_data.id) |
| if model: |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.MODEL_ID_TAKEN, |
| ) |
|
|
| else: |
| model = Models.insert_new_model(form_data, user.id) |
| if model: |
| return model |
| else: |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.DEFAULT(), |
| ) |
|
|
|
|
| |
| |
| |
|
|
|
|
| |
| @router.get("/model", response_model=Optional[ModelResponse]) |
| async def get_model_by_id(id: str, user=Depends(get_verified_user)): |
| model = Models.get_model_by_id(id) |
| if model: |
| if ( |
| user.role == "admin" |
| or model.user_id == user.id |
| or has_access(user.id, "read", model.access_control) |
| ): |
| return model |
| else: |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.NOT_FOUND, |
| ) |
|
|
|
|
| |
| |
| |
|
|
|
|
| @router.post("/model/toggle", response_model=Optional[ModelResponse]) |
| async def toggle_model_by_id(id: str, user=Depends(get_verified_user)): |
| model = Models.get_model_by_id(id) |
| if model: |
| if ( |
| user.role == "admin" |
| or model.user_id == user.id |
| or has_access(user.id, "write", model.access_control) |
| ): |
| model = Models.toggle_model_by_id(id) |
|
|
| if model: |
| return model |
| else: |
| raise HTTPException( |
| status_code=status.HTTP_400_BAD_REQUEST, |
| detail=ERROR_MESSAGES.DEFAULT("Error updating function"), |
| ) |
| else: |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.UNAUTHORIZED, |
| ) |
| else: |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.NOT_FOUND, |
| ) |
|
|
|
|
| |
| |
| |
|
|
|
|
| @router.post("/model/update", response_model=Optional[ModelModel]) |
| async def update_model_by_id( |
| id: str, |
| form_data: ModelForm, |
| user=Depends(get_verified_user), |
| ): |
| model = Models.get_model_by_id(id) |
|
|
| if not model: |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.NOT_FOUND, |
| ) |
|
|
| model = Models.update_model_by_id(id, form_data) |
| return model |
|
|
|
|
| |
| |
| |
|
|
|
|
| @router.delete("/model/delete", response_model=bool) |
| async def delete_model_by_id(id: str, user=Depends(get_verified_user)): |
| model = Models.get_model_by_id(id) |
| if not model: |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.NOT_FOUND, |
| ) |
|
|
| if model.user_id != user.id and user.role != "admin": |
| raise HTTPException( |
| status_code=status.HTTP_401_UNAUTHORIZED, |
| detail=ERROR_MESSAGES.UNAUTHORIZED, |
| ) |
|
|
| result = Models.delete_model_by_id(id) |
| return result |
|
|
|
|
| @router.delete("/delete/all", response_model=bool) |
| async def delete_all_models(user=Depends(get_admin_user)): |
| result = Models.delete_all_models() |
| return result |
|
|