From bf21a18335aa17ec8f2648592af222d9a1906c58 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 10 Apr 2026 17:55:07 +0800 Subject: [PATCH] bugfix --- llmage/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llmage/utils.py b/llmage/utils.py index 5d1a8fd..c8096ed 100644 --- a/llmage/utils.py +++ b/llmage/utils.py @@ -47,6 +47,7 @@ async def write_llmio(luid, io_dic): s = json.dumps(io_dic, ensure_ascii=False, indent=4) name = f'{luid}.json' webpath = await fs.save(name, s, userid='llmio') + debug(f'write_llmio({luid=}, {io_dic=}): {s=}, {webpath=}') return webpath async def llm_query_orders(userorgid, page, pagerows=80):