(value: unknown)
| 59 | } |
| 60 | |
| 61 | function normalizeRuntime(value: unknown): RuntimeMode { |
| 62 | const rawRuntime = typeof value === "string" ? value.trim() : ""; |
| 63 | return RUNTIMES.has(rawRuntime as RuntimeMode) |
| 64 | ? rawRuntime as RuntimeMode |
| 65 | : DEFAULT_RUNTIME; |
| 66 | } |
| 67 | |
| 68 | function normalizePlanningAgents(value: unknown): string[] { |
| 69 | const seen = new Set<string>(); |
no test coverage detected