| 1 | import { z } from 'zod' |
| 2 | |
| 3 | export interface ExtractOutputTextOptions { |
| 4 | /** Include traceback lines (with ANSI escapes stripped) for error outputs. */ |
| 5 | includeTraceback?: boolean |
| 6 | } |
| 7 | |
| 8 | const unknownObjectSchema = z.object({}).passthrough() |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected