From 3bd240bdc7e3b924d6e856c62b1316603bf9e60a Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 6 Jan 2026 17:43:30 +0800 Subject: [PATCH] bugfix --- llmage/llmclient.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llmage/llmclient.py b/llmage/llmclient.py index db3f507..a19d943 100644 --- a/llmage/llmclient.py +++ b/llmage/llmclient.py @@ -121,8 +121,7 @@ where a.upappid = c.id and a.apiname = e.name and a.expired_date > ${today}$ and a.enabled_date <= ${today}$ -) x left join historyformat y on x.hfid = y.id - left join uapiio z on x.ioid = z.id +) x left join uapiio z on x.ioid = z.id where x.id = ${llmid}$ """ recs = await sor.sqlExe(sql, {'llmid': llmid, 'today': today})