From f2063d24c315f4796e4e412a1328a25174769c12 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 28 Mar 2026 07:59:30 +0000 Subject: [PATCH] Rename AI Usage to API Usage It tracks all API calls and costs, not just AI. https://claude.ai/code/session_01GRGLA9yj7BpqKiyi6xFwnm --- admin/admin.go | 2 +- admin/ai_usage.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/admin.go b/admin/admin.go index a38de8cb..4d6040dc 100644 --- a/admin/admin.go +++ b/admin/admin.go @@ -22,7 +22,7 @@ func AdminHandler(w http.ResponseWriter, r *http.Request) { users := auth.GetAllAccounts() content := ``) - html := app.RenderHTMLForRequest("Admin", "Usage", sb.String(), r) + html := app.RenderHTMLForRequest("API Usage", "API Usage", sb.String(), r) w.Write([]byte(html)) }