docs(runtime-fallback): clarify timeout_seconds=0 disables auto-retry detection

This commit is contained in:
IYODA Atsushi
2026-02-19 12:10:05 +09:00
committed by YeonGyu-Kim
parent 280e4a6a41
commit 4dd05d8c2d
3 changed files with 22 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ export const RuntimeFallbackConfigSchema = z.object({
max_fallback_attempts: z.number().min(1).max(20).optional(),
/** Cooldown in seconds before retrying a failed model (default: 60) */
cooldown_seconds: z.number().min(0).optional(),
/** Session-level timeout in seconds to advance fallback when provider hangs (default: 30, 0 to disable) */
/** Session-level timeout in seconds to advance fallback when provider hangs (default: 30). Set to 0 to disable auto-retry signal detection (only error-based fallback remains active). */
timeout_seconds: z.number().min(0).optional(),
/** Show toast notification when switching to fallback model (default: true) */
notify_on_fallback: z.boolean().optional(),