This commit is contained in:
yumoqing 2026-01-06 16:37:13 +08:00
parent 2e42a39041
commit 7b65e289d6

View File

@ -92,12 +92,12 @@ where a.llmcatelogid = b.id
x = { x = {
'catelogid': r.catelogid, 'catelogid': r.catelogid,
'catelogname': r.catelogname, 'catelogname': r.catelogname,
'llms': [l] 'llms': [r]
} }
d.append(x) d.append(x)
cid = r.catelogid cid = r.catelogid
else: else:
x['llms'].append(l) x['llms'].append(r)
return d return d
return [] return []