docs(runtime-fallback): clarify timeout_seconds=0 disables auto-retry detection
This commit is contained in:
committed by
YeonGyu-Kim
parent
280e4a6a41
commit
4dd05d8c2d
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user