From a082c41dbc8520141e6ddb169d3461ef1d7712e5 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 9 Sep 2025 10:55:00 +0800 Subject: [PATCH] bugfix --- llmage/llmclient.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llmage/llmclient.py b/llmage/llmclient.py index 79bbea5..a439634 100644 --- a/llmage/llmclient.py +++ b/llmage/llmclient.py @@ -136,7 +136,8 @@ async def async_uapi_request(request, llm, sor): if not rzt.status or rzt.status == 'FAILED': debug(f'{b=} return error') return - if rzt.url: + if rzt.status == 'SUCCESSED': + debug(f'{b=} return successed') return period = llm.query_period or 30 asyncio.sleep(period)