From 5fbcd8a076835c4512a83294e57e30c5138fb3dc Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 27 Mar 2026 14:40:19 +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 f143f60..7942ebf 100644 --- a/llmage/llmclient.py +++ b/llmage/llmclient.py @@ -428,7 +428,7 @@ async def inference(request, *args, params_kw=None, **kw): async def llm_query_price(llmid, config_data): env = ServerEnv() async with get_sor_context(env, 'llmage') as sor: - llms = await sor.R('llm', {id': llmid}) + llms = await sor.R('llm', {'id': llmid}) if not llms: e = Exception(f'id={llmid} llm not founnd') exception(f'{e}')