2024-05-19 10:46:24 +00:00
|
|
|
import json
|
2024-05-19 14:11:28 +00:00
|
|
|
import logging
|
2024-05-19 10:46:24 +00:00
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
import peewee as pw
|
2024-05-24 07:26:00 +00:00
|
|
|
from peewee import *
|
|
|
|
|
2024-05-19 10:46:24 +00:00
|
|
|
from playhouse.shortcuts import model_to_dict
|
2024-05-24 06:47:01 +00:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-05-19 10:46:24 +00:00
|
|
|
|
2024-05-21 21:05:16 +00:00
|
|
|
from apps.web.internal.db import DB, JSONField
|
2024-05-19 10:46:24 +00:00
|
|
|
|
2024-05-24 07:26:00 +00:00
|
|
|
from typing import List, Union, Optional
|
2024-05-19 14:11:28 +00:00
|
|
|
from config import SRC_LOG_LEVELS
|
|
|
|
|
2024-05-24 07:26:00 +00:00
|
|
|
import time
|
|
|
|
|
2024-05-19 14:11:28 +00:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
log.setLevel(SRC_LOG_LEVELS["MODELS"])
|
|
|
|
|
2024-05-19 10:46:24 +00:00
|
|
|
|
|
|
|
####################
|
|
|
|
# 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")
|
2024-05-21 21:05:16 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
# ModelMeta is a model for the data stored in the meta field of the Model table
|
|
|
|
# It isn't currently used in the backend, but it's here as a reference
|
|
|
|
class ModelMeta(BaseModel):
|
2024-05-24 06:47:01 +00:00
|
|
|
description: Optional[str] = None
|
2024-05-19 10:46:24 +00:00
|
|
|
"""
|
2024-05-19 14:11:28 +00:00
|
|
|
User-facing description of the model.
|
2024-05-19 10:46:24 +00:00
|
|
|
"""
|
|
|
|
|
2024-05-24 06:47:01 +00:00
|
|
|
vision_capable: Optional[bool] = None
|
2024-05-19 14:11:28 +00:00
|
|
|
"""
|
|
|
|
A flag indicating if the model is capable of vision and thus image inputs
|
|
|
|
"""
|
2024-05-19 10:46:24 +00:00
|
|
|
|
2024-05-24 06:47:01 +00:00
|
|
|
model_config = ConfigDict(extra="allow")
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
2024-05-19 10:46:24 +00:00
|
|
|
|
|
|
|
class Model(pw.Model):
|
2024-05-21 21:05:16 +00:00
|
|
|
id = pw.TextField(unique=True)
|
2024-05-19 10:46:24 +00:00
|
|
|
"""
|
|
|
|
The model's id as used in the API. If set to an existing model, it will override the model.
|
|
|
|
"""
|
2024-05-24 05:58:26 +00:00
|
|
|
user_id = pw.TextField()
|
2024-05-19 10:46:24 +00:00
|
|
|
|
2024-05-21 21:05:16 +00:00
|
|
|
base_model_id = pw.TextField(null=True)
|
2024-05-19 10:46:24 +00:00
|
|
|
"""
|
2024-05-21 21:05:16 +00:00
|
|
|
An optional pointer to the actual model that should be used when proxying requests.
|
2024-05-19 10:46:24 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
name = pw.TextField()
|
|
|
|
"""
|
2024-05-21 21:05:16 +00:00
|
|
|
The human-readable display name of the model.
|
2024-05-19 10:46:24 +00:00
|
|
|
"""
|
|
|
|
|
2024-05-21 21:05:16 +00:00
|
|
|
params = JSONField()
|
2024-05-19 10:46:24 +00:00
|
|
|
"""
|
2024-05-21 21:05:16 +00:00
|
|
|
Holds a JSON encoded blob of parameters, see `ModelParams`.
|
2024-05-19 10:46:24 +00:00
|
|
|
"""
|
|
|
|
|
2024-05-24 05:58:26 +00:00
|
|
|
meta = JSONField()
|
|
|
|
"""
|
|
|
|
Holds a JSON encoded blob of metadata, see `ModelMeta`.
|
|
|
|
"""
|
|
|
|
|
2024-05-24 07:26:00 +00:00
|
|
|
updated_at = BigIntegerField()
|
|
|
|
created_at = BigIntegerField()
|
2024-05-24 05:58:26 +00:00
|
|
|
|
2024-05-19 10:46:24 +00:00
|
|
|
class Meta:
|
|
|
|
database = DB
|
|
|
|
|
|
|
|
|
|
|
|
class ModelModel(BaseModel):
|
|
|
|
id: str
|
2024-05-21 21:05:16 +00:00
|
|
|
base_model_id: Optional[str] = None
|
2024-05-24 07:26:00 +00:00
|
|
|
|
2024-05-19 10:46:24 +00:00
|
|
|
name: str
|
2024-05-21 21:05:16 +00:00
|
|
|
params: ModelParams
|
2024-05-24 05:58:26 +00:00
|
|
|
meta: ModelMeta
|
2024-05-19 10:46:24 +00:00
|
|
|
|
2024-05-24 07:26:00 +00:00
|
|
|
updated_at: int # timestamp in epoch
|
|
|
|
created_at: int # timestamp in epoch
|
|
|
|
|
2024-05-19 10:46:24 +00:00
|
|
|
|
|
|
|
####################
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
2024-05-19 10:46:24 +00:00
|
|
|
class ModelsTable:
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
db: pw.SqliteDatabase | pw.PostgresqlDatabase,
|
|
|
|
):
|
|
|
|
self.db = db
|
|
|
|
self.db.create_tables([Model])
|
|
|
|
|
2024-05-24 07:26:00 +00:00
|
|
|
def insert_new_model(self, model: ModelForm, user_id: str) -> Optional[ModelModel]:
|
|
|
|
try:
|
|
|
|
model = Model.create(
|
|
|
|
**{
|
|
|
|
**model.model_dump(),
|
|
|
|
"user_id": user_id,
|
|
|
|
"created_at": int(time.time()),
|
|
|
|
"updated_at": int(time.time()),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
return ModelModel(**model_to_dict(model))
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def get_all_models(self) -> List[ModelModel]:
|
2024-05-19 10:46:24 +00:00
|
|
|
return [ModelModel(**model_to_dict(model)) for model in Model.select()]
|
|
|
|
|
2024-05-24 07:26:00 +00:00
|
|
|
def get_model_by_id(self, id: str) -> Optional[ModelModel]:
|
2024-05-19 10:46:24 +00:00
|
|
|
try:
|
2024-05-24 07:26:00 +00:00
|
|
|
model = Model.get(Model.id == id)
|
|
|
|
return ModelModel(**model_to_dict(model))
|
|
|
|
except:
|
|
|
|
return None
|
2024-05-19 10:46:24 +00:00
|
|
|
|
2024-05-24 07:26:00 +00:00
|
|
|
def update_model_by_id(self, id: str, model: ModelForm) -> Optional[ModelModel]:
|
|
|
|
try:
|
|
|
|
# update only the fields that are present in the model
|
|
|
|
query = Model.update(**model.model_dump()).where(Model.id == id)
|
|
|
|
query.execute()
|
|
|
|
|
|
|
|
model = Model.get(Model.id == id)
|
|
|
|
return ModelModel(**model_to_dict(model))
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def delete_model_by_id(self, id: str) -> bool:
|
|
|
|
try:
|
|
|
|
query = Model.delete().where(Model.id == id)
|
|
|
|
query.execute()
|
2024-05-19 10:46:24 +00:00
|
|
|
return True
|
2024-05-24 07:26:00 +00:00
|
|
|
except:
|
2024-05-19 10:46:24 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
Models = ModelsTable(DB)
|