From 408f8acadc1d2632cbe5be17c1a15eab5a648767 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 22 May 2026 17:58:34 +0800 Subject: [PATCH] buggix --- llmage/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llmage/utils.py b/llmage/utils.py index a595b4b..8f7dae0 100644 --- a/llmage/utils.py +++ b/llmage/utils.py @@ -32,7 +32,7 @@ async def get_user_tpac(userid): return None async def get_tpac_balance(tpac, userid): - url = tpac.get_user_balance_url + url = tpac.get_tpac_balance_url hc = StreamHttpClient() try: b = await hc.request('GET', url, params={'userid': userid}) @@ -47,7 +47,7 @@ async def get_tpac_balance(tpac, userid): return None async def tpac_accounting(tpac, userid, llmid, amount, usage, luid): - url = tpac.accounting_url + url = tpac.tpac_accounting_url hc = StreamHttpClient() d = { 'userid': userid,