From 20de0952bbb316051944e5b4ee3c78fd264f7a26 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 10 Apr 2026 17:14:03 +0800 Subject: [PATCH] bugfix --- llmage/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llmage/utils.py b/llmage/utils.py index e7be7d5..7b75bc6 100644 --- a/llmage/utils.py +++ b/llmage/utils.py @@ -15,10 +15,12 @@ from ahserver.serverenv import get_serverenv, ServerEnv from ahserver.filestorage import FileStorage async def append_new_llmoutput(webpath, output): + critical(f'{webpath=}') fs = FileStorage() p = fs.realPath(webpath) if isinstance(output, str): output = json.loads(output) + critical(f'{webpath=}') bin = await read_webpath(webpath) io = json.loads(bin.decode('utf-8')) io['output'].append(output)