Commit 6c86cf76 authored by yangjianbo's avatar yangjianbo
Browse files

Merge branch 'main' into test-dev

parents e51a3288 631ba25e
...@@ -376,6 +376,12 @@ export interface UsageProgress { ...@@ -376,6 +376,12 @@ export interface UsageProgress {
window_stats?: WindowStats | null // 窗口期统计(从窗口开始到当前的使用量) window_stats?: WindowStats | null // 窗口期统计(从窗口开始到当前的使用量)
} }
// Antigravity 单个模型的配额信息
export interface AntigravityModelQuota {
utilization: number // 使用率 0-100
reset_time: string // 重置时间 ISO8601
}
export interface AccountUsageInfo { export interface AccountUsageInfo {
updated_at: string | null updated_at: string | null
five_hour: UsageProgress | null five_hour: UsageProgress | null
...@@ -383,6 +389,7 @@ export interface AccountUsageInfo { ...@@ -383,6 +389,7 @@ export interface AccountUsageInfo {
seven_day_sonnet: UsageProgress | null seven_day_sonnet: UsageProgress | null
gemini_pro_daily?: UsageProgress | null gemini_pro_daily?: UsageProgress | null
gemini_flash_daily?: UsageProgress | null gemini_flash_daily?: UsageProgress | null
antigravity_quota?: Record<string, AntigravityModelQuota> | null
} }
// OpenAI Codex usage snapshot (from response headers) // OpenAI Codex usage snapshot (from response headers)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment