47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
# 可写入/更新的字段(不含 id、created_at、updated_at)
|
||
_MODEL_FIELDS = (
|
||
'llmid', 'provider', 'model_name', 'display_name', 'model_type',
|
||
'context_length', 'input_token_price', 'output_token_price',
|
||
'cache_hit_input_price', 'billing_method', 'billing_unit',
|
||
'capabilities', 'limitations', 'highlights', 'is_active',
|
||
'description', 'listing_status',
|
||
)
|
||
|
||
def _escape(value):
|
||
if value is None:
|
||
return None
|
||
return str(value).replace("'", "''")
|
||
|
||
|
||
def _build_model_dict(ns, include_listing_status=False):
|
||
data = {}
|
||
for field in _MODEL_FIELDS:
|
||
if field in ns and ns.get(field) is not None and ns.get(field) != '':
|
||
data[field] = ns.get(field)
|
||
if include_listing_status and 'listing_status' not in data:
|
||
data['listing_status'] = ns.get('listing_status', 0)
|
||
return data
|
||
|
||
async def model_management_detail(ns={}):
|
||
"""根据 id 获取单条模型(编辑页回显)"""
|
||
model_id = ns.get('id')
|
||
if not model_id:
|
||
return {'status': False, 'msg': 'id is required'}
|
||
|
||
db = DBPools()
|
||
async with db.sqlorContext('kboss') as sor:
|
||
try:
|
||
find_sql = "SELECT * FROM model_management WHERE id = '%s' LIMIT 1;" % _escape(model_id)
|
||
result = await sor.sqlExe(find_sql, {})
|
||
if not result:
|
||
return {'status': False, 'msg': 'model not found'}
|
||
return {
|
||
'status': True,
|
||
'msg': 'get model detail success',
|
||
'data': result[0],
|
||
}
|
||
except Exception as e:
|
||
return {'status': False, 'msg': 'get model detail failed, %s' % str(e)}
|
||
|
||
ret = await model_management_detail(params_kw)
|
||
return ret |