(value reflect.Value, names ...string)
| 909 | case *coretools.ToolCall: |
| 910 | if call != nil { |
| 911 | command = stringFromAny(call.Input["command"]) |
| 912 | } |
| 913 | case map[string]any: |
| 914 | if input, ok := call["input"].(map[string]any); ok { |
| 915 | command = stringFromAny(input["command"]) |
| 916 | } |
| 917 | } |
| 918 | distro := stringFromAny(request["distro"]) |
| 919 | if command != "" && distro != "" { |
| 920 | return distro + ": " + command |
| 921 | } |
no outgoing calls
no test coverage detected