From 8b2021358edcb2cf1a05888d7a1da06cc335251f Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 8 Sep 2025 18:25:15 +0800 Subject: [PATCH] bugfix --- llmage/llmclient.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llmage/llmclient.py b/llmage/llmclient.py index edc6184..981fd47 100644 --- a/llmage/llmclient.py +++ b/llmage/llmclient.py @@ -114,6 +114,7 @@ async def async_uapi_request(request, llm, sor): b = await uapi.call(llm.upappid, llm.apiname, userid, params=env.params_kw) if isinstance(b, bytes): b = b.decode('utf-8') + debug(f'task sumbited:{b}') d = json.loads(b) if not d.get('taskid'): debug(f'{b} error')