Expose local scheduling failures in usage UI

This commit is contained in:
MMEXA
2026-05-18 16:28:37 +00:00
parent d51b44d642
commit 4317ff78b1
15 changed files with 620 additions and 24 deletions

View File

@@ -151,6 +151,19 @@ export interface RequestSchedulingFailure {
reason_summary?: string | null
status_code?: number | null
no_upstream_attempt?: boolean | null
requested_model?: string | null
candidate_count?: number | null
persisted_candidate_count?: number | null
skipped_candidate_count?: number | null
skip_reasons?: Record<string, number> | null
provider_hint?: {
id?: string | null
name?: string | null
} | null
endpoint_hint?: {
id?: string | null
api_format?: string | null
} | null
}
export interface RequestDetail {