From 7fd2c5622d930bb23b0e3f5ec744966d0324ac8a Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 3 Aug 2026 14:36:03 +0800 Subject: [PATCH] bugfix --- llmage/llmclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llmage/llmclient.py b/llmage/llmclient.py index ca65dd6..60b3b49 100644 --- a/llmage/llmclient.py +++ b/llmage/llmclient.py @@ -60,7 +60,7 @@ async def uapi_request(request, llm, callerid, callerorgid, params_kw=None): yield_it = True if d.get('choices'): last_choices = d['choices'] - else if last_choices: + elif last_choices: d['choices'] = last_choices if d.get('content'): txt = txt + d['content']