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

191 lines
4.4 KiB
Python
Raw Normal View History

import json
import logging
from typing import Optional
2024-05-24 06:47:01 +00:00
from pydantic import BaseModel, ConfigDict
from sqlalchemy import String, Column, BigInteger, Text
2024-07-04 06:32:39 +00:00
from apps.webui.internal.db import Base, JSONField, get_db
2024-05-24 07:26:00 +00:00
from typing import List, Union, Optional
from config import SRC_LOG_LEVELS
2024-05-24 07:26:00 +00:00
import time
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-05-25 01:26:36 +00:00
profile_image_url: Optional[str] = "/favicon.png"
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`.
"""
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-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-05-24 07:26:00 +00:00
class ModelResponse(BaseModel):
id: str
name: str
meta: ModelMeta
updated_at: int # timestamp in epoch
created_at: int # timestamp in epoch
class ModelForm(BaseModel):
id: str
base_model_id: Optional[str] = None
name: str
meta: ModelMeta
params: ModelParams
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
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()]
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-05-24 07:26:00 +00:00
except:
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)
.update(model.model_dump(exclude={"id"}, exclude_none=True))
)
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-05-24 07:26:00 +00:00
except:
return False
Models = ModelsTable()