This commit is contained in:
yumoqing 2025-08-31 10:54:53 +08:00
parent 8a4a096b96
commit 452a545d42

View File

@ -18,7 +18,7 @@ async def get_llms_by_catelog(catelogid):
db = DBPools()
dbname = get_serverenv('get_module_dbname')('llmage')
async with db.sqlorContext(dbname) as sor:
recs = await sor.R('llm', {'catelogid': catelogid})
recs = await sor.R('llm', {'llmcatelogid': catelogid})
return recs
return []