open-webui/backend/open_webui/apps/webui/models/models.py

275 lines
7.4 KiB
Python
Raw Normal View History

import logging
2024-08-27 22:10:27 +00:00
import time
from typing import Optional
from open_webui.apps.webui.internal.db import Base, JSONField, get_db
from open_webui.env import SRC_LOG_LEVELS
2024-11-15 09:29:07 +00:00
2024-11-18 13:37:04 +00:00
from open_webui.apps.webui.models.users import Users, UserResponse
2024-11-15 09:29:07 +00:00
2024-08-27 22:10:27 +00:00
from pydantic import BaseModel, ConfigDict
2024-11-15 09:29:07 +00:00
from sqlalchemy import or_, and_, func
from sqlalchemy.dialects import postgresql, sqlite
2024-11-16 02:21:41 +00:00
from sqlalchemy import BigInteger, Column, Text, JSON, Boolean
2024-05-24 07:26:00 +00:00
2024-11-15 09:29:07 +00:00
2024-11-17 00:51:55 +00:00
from open_webui.utils.access_control import has_access
2024-11-15 09:29:07 +00:00
log = logging.getLogger(__name__)
log.setLevel(SRC_LOG_LEVELS["MODELS"])
####################
# Models DB Schema
####################
# ModelParams is a model for the data stored in the params field of the Model table
class ModelParams(BaseModel):
2024-05-24 06:47:01 +00:00
model_config = ConfigDict(extra="allow")
pass
# ModelMeta is a model for the data stored in the meta field of the Model table
class ModelMeta(BaseModel):
2024-07-09 06:07:23 +00:00
profile_image_url: Optional[str] = "/static/favicon.png"
2024-05-25 01:26:36 +00:00
2024-05-24 06:47:01 +00:00
description: Optional[str] = None
"""
User-facing description of the model.
"""
2024-05-25 06:34:58 +00:00
capabilities: Optional[dict] = None
2024-05-24 06:47:01 +00:00
model_config = ConfigDict(extra="allow")
pass
class Model(Base):
__tablename__ = "model"
id = Column(Text, primary_key=True)
"""
The model's id as used in the API. If set to an existing model, it will override the model.
"""
user_id = Column(Text)
base_model_id = Column(Text, nullable=True)
"""
An optional pointer to the actual model that should be used when proxying requests.
"""
name = Column(Text)
"""
The human-readable display name of the model.
"""
params = Column(JSONField)
"""
Holds a JSON encoded blob of parameters, see `ModelParams`.
"""
meta = Column(JSONField)
2024-05-24 05:58:26 +00:00
"""
Holds a JSON encoded blob of metadata, see `ModelMeta`.
"""
2024-11-15 02:57:25 +00:00
access_control = Column(JSON, nullable=True) # Controls data access levels.
2024-11-15 04:13:43 +00:00
# Defines access control rules for this entry.
# - `None`: Public access, available to all users with the "user" role.
# - `{}`: Private access, restricted exclusively to the owner.
# - Custom permissions: Specific access control for reading and writing;
# Can specify group or user-level restrictions:
# {
# "read": {
# "group_ids": ["group_id1", "group_id2"],
# "user_ids": ["user_id1", "user_id2"]
# },
# "write": {
# "group_ids": ["group_id1", "group_id2"],
# "user_ids": ["user_id1", "user_id2"]
# }
# }
2024-11-15 02:57:25 +00:00
2024-11-16 02:21:41 +00:00
is_active = Column(Boolean, default=True)
updated_at = Column(BigInteger)
created_at = Column(BigInteger)
class ModelModel(BaseModel):
id: str
2024-05-25 01:26:36 +00:00
user_id: str
base_model_id: Optional[str] = None
2024-05-24 07:26:00 +00:00
name: str
params: ModelParams
2024-05-24 05:58:26 +00:00
meta: ModelMeta
2024-11-15 04:13:43 +00:00
access_control: Optional[dict] = None
2024-11-15 02:57:25 +00:00
2024-11-16 02:21:41 +00:00
is_active: bool
2024-05-24 07:26:00 +00:00
updated_at: int # timestamp in epoch
created_at: int # timestamp in epoch
model_config = ConfigDict(from_attributes=True)
####################
# Forms
####################
2024-11-18 13:37:04 +00:00
class ModelUserResponse(ModelModel):
user: Optional[UserResponse] = None
2024-11-15 09:29:07 +00:00
2024-11-16 02:21:41 +00:00
2024-11-18 13:37:04 +00:00
class ModelResponse(ModelModel):
pass
2024-05-24 07:26:00 +00:00
class ModelForm(BaseModel):
id: str
base_model_id: Optional[str] = None
name: str
meta: ModelMeta
params: ModelParams
2024-11-16 02:21:41 +00:00
access_control: Optional[dict] = None
is_active: bool = True
2024-05-24 07:26:00 +00:00
class ModelsTable:
2024-05-25 01:26:36 +00:00
def insert_new_model(
self, form_data: ModelForm, user_id: str
2024-05-25 01:26:36 +00:00
) -> Optional[ModelModel]:
model = ModelModel(
**{
**form_data.model_dump(),
"user_id": user_id,
"created_at": int(time.time()),
"updated_at": int(time.time()),
}
)
2024-05-24 07:26:00 +00:00
try:
2024-07-04 06:32:39 +00:00
with get_db() as db:
result = Model(**model.model_dump())
db.add(result)
db.commit()
db.refresh(result)
if result:
return ModelModel.model_validate(result)
else:
return None
2024-05-25 01:26:36 +00:00
except Exception as e:
print(e)
2024-05-24 07:26:00 +00:00
return None
2024-08-14 12:46:31 +00:00
def get_all_models(self) -> list[ModelModel]:
2024-07-04 06:32:39 +00:00
with get_db() as db:
return [ModelModel.model_validate(model) for model in db.query(Model).all()]
2024-11-18 13:37:04 +00:00
def get_models(self) -> list[ModelUserResponse]:
2024-11-15 09:29:07 +00:00
with get_db() as db:
2024-11-20 00:47:35 +00:00
models = []
for model in db.query(Model).filter(Model.base_model_id != None).all():
user = Users.get_user_by_id(model.user_id)
models.append(
ModelUserResponse.model_validate(
{
**ModelModel.model_validate(model).model_dump(),
"user": user.model_dump() if user else None,
}
)
2024-11-18 13:37:04 +00:00
)
2024-11-20 00:47:35 +00:00
return models
2024-11-15 09:29:07 +00:00
2024-11-16 02:53:50 +00:00
def get_base_models(self) -> list[ModelModel]:
with get_db() as db:
return [
ModelModel.model_validate(model)
for model in db.query(Model).filter(Model.base_model_id == None).all()
]
2024-11-15 09:29:07 +00:00
def get_models_by_user_id(
self, user_id: str, permission: str = "write"
2024-11-18 13:37:04 +00:00
) -> list[ModelUserResponse]:
models = self.get_models()
2024-11-15 09:29:07 +00:00
return [
model
for model in models
if model.user_id == user_id
or has_access(user_id, permission, model.access_control)
]
def get_model_by_id(self, id: str) -> Optional[ModelModel]:
try:
2024-07-04 06:32:39 +00:00
with get_db() as db:
model = db.get(Model, id)
return ModelModel.model_validate(model)
2024-08-14 12:38:19 +00:00
except Exception:
2024-05-24 07:26:00 +00:00
return None
2024-11-16 02:21:41 +00:00
def toggle_model_by_id(self, id: str) -> Optional[ModelModel]:
with get_db() as db:
try:
is_active = db.query(Model).filter_by(id=id).first().is_active
db.query(Model).filter_by(id=id).update(
{
"is_active": not is_active,
"updated_at": int(time.time()),
}
)
db.commit()
return self.get_model_by_id(id)
except Exception:
return None
2024-06-24 07:57:08 +00:00
def update_model_by_id(self, id: str, model: ModelForm) -> Optional[ModelModel]:
2024-05-24 07:26:00 +00:00
try:
2024-07-04 06:32:39 +00:00
with get_db() as db:
# update only the fields that are present in the model
2024-07-08 18:58:36 +00:00
result = (
db.query(Model)
.filter_by(id=id)
2024-11-16 06:04:33 +00:00
.update(model.model_dump(exclude={"id"}))
2024-07-08 18:58:36 +00:00
)
2024-07-04 06:32:39 +00:00
db.commit()
2024-07-08 18:58:36 +00:00
model = db.get(Model, id)
2024-07-04 06:32:39 +00:00
db.refresh(model)
return ModelModel.model_validate(model)
2024-05-25 05:21:57 +00:00
except Exception as e:
print(e)
2024-05-24 07:26:00 +00:00
return None
def delete_model_by_id(self, id: str) -> bool:
2024-05-24 07:26:00 +00:00
try:
2024-07-04 06:32:39 +00:00
with get_db() as db:
db.query(Model).filter_by(id=id).delete()
2024-07-06 15:10:58 +00:00
db.commit()
2024-07-04 06:32:39 +00:00
return True
2024-08-14 12:38:19 +00:00
except Exception:
return False
2024-11-19 19:03:36 +00:00
def delete_all_models(self) -> bool:
try:
with get_db() as db:
db.query(Model).delete()
db.commit()
return True
except Exception:
return False
Models = ModelsTable()