Initial commit

This commit is contained in:
fawney19
2025-12-10 20:52:44 +08:00
commit f784106826
485 changed files with 110993 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
export interface ActivityHeatmapDay {
date: string
requests: number
total_tokens: number
total_cost: number
actual_total_cost?: number
}
export interface ActivityHeatmap {
start_date: string
end_date: string
total_days: number
max_requests: number
days: ActivityHeatmapDay[]
}