From 5be7aa9d3af5ece8608bdbf5b1de2cbb8df1ff45 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 8 Sep 2025 19:26:18 +0800 Subject: [PATCH] bugfix --- llmage/llmclient.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llmage/llmclient.py b/llmage/llmclient.py index 6d6e473..79bbea5 100644 --- a/llmage/llmclient.py +++ b/llmage/llmclient.py @@ -130,6 +130,7 @@ async def async_uapi_request(request, llm, sor): ) if isinstance(b, bytes): b = b.decode('utf-8') + b = ''.join(b.split('\n')) rzt = DictObject(**json.loads(b)) yield b + '\n' if not rzt.status or rzt.status == 'FAILED':