From 0c1397455c213227905a5d5e309417152ca833e9 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 30 Mar 2026 13:55:35 +0800 Subject: [PATCH] bugfix --- llmage/accounting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llmage/accounting.py b/llmage/accounting.py index 5e0b129..2482af2 100644 --- a/llmage/accounting.py +++ b/llmage/accounting.py @@ -10,7 +10,7 @@ from accounting.getaccount import getCustomerBalance async def llm_charging(sor, ppid, llmusage): env = ServerEnv() prices = await env.pricing_program_charging(sor, ppid, llmusage.usage) - if len(prics) == 0: + if len(prices) == 0: d = DictObject() d.original_amount = d.amount = d.cost = 0.00 return d