(value reflect.Value, names ...string)
| 901 | return mapStringAny(value) |
| 902 | } |
| 903 | |
| 904 | func sandboxSetupTarget(request map[string]any, toolCall any) string { |
| 905 | command := "" |
| 906 | switch call := toolCall.(type) { |
| 907 | case coretools.ToolCall: |
| 908 | command = stringFromAny(call.Input["command"]) |
| 909 | case *coretools.ToolCall: |
| 910 | if call != nil { |
| 911 | command = stringFromAny(call.Input["command"]) |
| 912 | } |
no test coverage detected