From cf5c7cec4c4fecd90e5e0fcb2618868eb9f444cb Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 1 Apr 2026 16:44:25 +0800 Subject: [PATCH] bugfix --- llmage/asyncinference.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llmage/asyncinference.py b/llmage/asyncinference.py index caf13fd..f32894e 100644 --- a/llmage/asyncinference.py +++ b/llmage/asyncinference.py @@ -137,7 +137,10 @@ async def add_new_llmusage_output(luid, newd): r.ioinfo = json.dumps(io) r.update(newd) await sor.U('llmusage', r) + debug(f'llmuasage update to {r}') return + exception(f'add_new_llmusage_output({luid}, {newd}) Error') + def get_llmusage_last_output(r): io = json.loads(r.ioinfo) outs = io.get('output', [])