(model: CustomRegistryModelEntry)
| 247 | } |
| 248 | |
| 249 | function hasRichCapabilityHints(model: CustomRegistryModelEntry): boolean { |
| 250 | return ( |
| 251 | typeof model.tool_call === 'boolean' || |
| 252 | typeof model.reasoning === 'boolean' || |
| 253 | model.modalities !== undefined |
| 254 | ); |
| 255 | } |
| 256 | |
| 257 | function resolveMaxContextSize(model: CustomRegistryModelEntry): number { |
| 258 | const context = model.limit?.context; |
no outgoing calls
no test coverage detected