()
| 98 | } |
| 99 | |
| 100 | func (t *imageSearchBuiltin) GetInputSchema() interface{} { |
| 101 | return (&webSearchBuiltin{}).GetInputSchema() |
| 102 | } |
| 103 | |
| 104 | func (t *imageSearchBuiltin) Execute(ctx context.Context, arguments map[string]interface{}) (*protocol.CallToolResult, error) { |
| 105 | if isVision, ok := ctx.Value(modelVisionContextKey{}).(bool); ok && !isVision { |
nothing calls this directly
no test coverage detected