From 6059c09aea2ff101badb0ddce26cc72a1b3f0b1f Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 19 Sep 2025 18:11:53 +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 65c8814..63459cd 100644 --- a/llmage/llmclient.py +++ b/llmage/llmclient.py @@ -153,7 +153,7 @@ async def async_uapi_request(request, llm, sor): while True: b = None try: - b = await uapi.call(llm.upappid, llm.query_apiname, userid, params=d.context) + b = await uapi.call(llm.upappid, apiname, userid, params=d.context) except Exception as e: exception(f'{e=},{format_exc()}') yield f'{{"content": f"ERROR:{e=}"}}\n'