From 112c86e80b5511b916a7d663ea8b0d6f27011885 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 20 Jul 2026 19:34:24 +0800 Subject: [PATCH] bugfix --- llmage/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llmage/utils.py b/llmage/utils.py index dd1b5d2..c3c87f7 100644 --- a/llmage/utils.py +++ b/llmage/utils.py @@ -335,7 +335,7 @@ async def get_pricing_text(l): env = ServerEnv() pd = await env.get_pricing_display(l.ppid, model=l.name) if pd: - llm.pricing_display = pd.get('display_text', '') + l.pricing_display = pd.get('display_text', '') except Exception as e: debug(f'{e}') pass