(value: unknown)
| 51 | const RESUME_BACKOFF_MS = [250, 500, 1000] as const |
| 52 | |
| 53 | function nonBlankString(value: unknown): string | undefined { |
| 54 | if (typeof value !== 'string') return undefined |
| 55 | const trimmed = value.trim() |
| 56 | return trimmed.length > 0 ? trimmed : undefined |
| 57 | } |
| 58 | |
| 59 | function resultContent(context: StreamingContext, options: CopilotLifecycleOptions): string { |
| 60 | if (options.interactive === false && context.sawMainToolCall) { |