From 4fa220b985b85fca73dfbdf5246c919bf25c9d46 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 8 Apr 2026 17:17:16 +0800 Subject: [PATCH] bugfix --- wwwroot/test_llm_charging.dspy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/test_llm_charging.dspy b/wwwroot/test_llm_charging.dspy index d453ec3..7b6b20d 100644 --- a/wwwroot/test_llm_charging.dspy +++ b/wwwroot/test_llm_charging.dspy @@ -5,7 +5,7 @@ async with get_sor_context(env, 'llmage') as sor: recs = await sor.sqlExe(sql, {'id': luid}) if recs: r = recs[0] - x = await llm_charging(r.ppid, r.usages) + x = await llm_charging(r.ppid, r) return x return {'sql': sql, 'luid': luid, 'error': 'llm not found'} return {