(
_options: StructuredOutputOptions<CodexTextProviderOptions>,
)
| 354 | } |
| 355 | |
| 356 | structuredOutput( |
| 357 | _options: StructuredOutputOptions<CodexTextProviderOptions>, |
| 358 | ): Promise<StructuredOutputResult<unknown>> { |
| 359 | return Promise.reject( |
| 360 | new Error( |
| 361 | 'Structured output is not yet supported by the in-sandbox Codex adapter. ' + |
| 362 | 'Use a model adapter for structured output, or omit outputSchema.', |
| 363 | ), |
| 364 | ) |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | /** |
no outgoing calls
no test coverage detected