(
value: boolean | undefined,
{
positive = 'Supported',
negative = 'Not supported',
}: {
positive?: string
negative?: string
} = {}
)
| 199 | } |
| 200 | |
| 201 | export function formatCapabilityBoolean( |
| 202 | value: boolean | undefined, |
| 203 | { |
| 204 | positive = 'Supported', |
| 205 | negative = 'Not supported', |
| 206 | }: { |
| 207 | positive?: string |
| 208 | negative?: string |
| 209 | } = {} |
| 210 | ): string { |
| 211 | return value ? positive : negative |
| 212 | } |
| 213 | |
| 214 | function supportsCatalogStructuredOutputs(capabilities: ModelCapabilities): boolean { |
| 215 | return !capabilities.deepResearch |
no outgoing calls
no test coverage detected