删除已在 ahserver/ServerEnv 预加载的模块: json, datetime, getID, debug, curDateString, timestampstr, get_sor_context, time, DictObject, partial, FileStorage, os 删除模块内部 import: from llmage.utils import get_llmusage_by_id, read_ioinfo_content 同步将 get_llmusage_by_id, read_ioinfo_content 加入 load_llmage() 导出, dspy 中通过 ServerEnv 全局调用。
28 lines
970 B
Python
28 lines
970 B
Python
#!/usr/bin/env python3
|
|
|
|
result = {'success': False, 'rows': [], 'total': 0}
|
|
|
|
try:
|
|
dbname = get_module_dbname('llmage')
|
|
page = int(params_kw.get('page', 1))
|
|
rows_per_page = int(params_kw.get('rows', 20))
|
|
offset = (page - 1) * rows_per_page
|
|
|
|
async with DBPools().sqlorContext(dbname) as sor:
|
|
# 获取总数
|
|
count_sql = "select count(*) as cnt from llmcatelog"
|
|
count_rows = await sor.sqlExe(count_sql, {})
|
|
total = count_rows[0]['cnt'] if count_rows else 0
|
|
|
|
# 获取分页数据
|
|
data_sql = "select id, name, description from llmcatelog order by name limit ${limit}$ offset ${offset}$"
|
|
rows = await sor.sqlExe(data_sql, {'limit': rows_per_page, 'offset': offset})
|
|
result['rows'] = [dict(r) for r in (rows or [])]
|
|
result['total'] = total
|
|
result['success'] = True
|
|
|
|
except Exception as e:
|
|
result['error'] = str(e)
|
|
|
|
return json.dumps(result, ensure_ascii=False, default=str)
|