From 9de741979da12049564a1ca5e6a68509f19af0d5 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 31 Mar 2026 16:37:24 +0800 Subject: [PATCH] bugfix --- llmage/asyncinference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llmage/asyncinference.py b/llmage/asyncinference.py index 3da9971..caf13fd 100644 --- a/llmage/asyncinference.py +++ b/llmage/asyncinference.py @@ -33,7 +33,7 @@ where userid=${userid}$ async def get_asynctask_status(taskid): env = ServerEnv() async with get_sor_context(env, 'llmage') as sor: - recs = await sor.R('llmusage', {'taskid', taskid}) + recs = await sor.R('llmusage', {'taskid': taskid}) if recs: r = recs[0] io = json.loads(r.ioinfo)