(overrides: Partial<ModelCapability> = {})
| 42 | ]); |
| 43 | |
| 44 | function capabilities(overrides: Partial<ModelCapability> = {}): ModelCapability { |
| 45 | return { |
| 46 | image_in: true, |
| 47 | video_in: true, |
| 48 | audio_in: false, |
| 49 | thinking: false, |
| 50 | tool_use: true, |
| 51 | max_context_tokens: 0, |
| 52 | ...overrides, |
| 53 | }; |
| 54 | } |
| 55 | |
| 56 | function makeReadMediaTool( |
| 57 | input: { |
no outgoing calls
no test coverage detected