From abafdb4eb95eb000a0b6b69763a2f66b3335f3bc Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 21 May 2026 13:35:00 +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 5f64dbf..488cf42 100644 --- a/llmage/utils.py +++ b/llmage/utils.py @@ -60,7 +60,7 @@ async def tpac_accounting(apikey, userid, llmid, amount, usage): hc = StreamHttpClient() status = 'failed' try: - b = hc.request('POST', url, data=d): + b = hc.request('POST', url, data=d) d = json.loads(b.decode('utf-8')) if d['status'] == 'ok': status = 'accounted'