(obj, key)
| 230 | } |
| 231 | |
| 232 | function getStringArgWeb(obj, key) { |
| 233 | if (!obj || typeof obj !== "object") return ""; |
| 234 | const v = obj[key]; |
| 235 | return typeof v === "string" ? v : ""; |
| 236 | } |
| 237 | |
| 238 | function formatToolCallLabelWeb(call) { |
| 239 | const name = call.name; |
no outgoing calls
no test coverage detected