collectToolNamesOpenAI extracts tool function names from an OpenAI request.
(rawJSON []byte)
| 127 | |
| 128 | // collectToolNamesOpenAI extracts tool function names from an OpenAI request. |
| 129 | func collectToolNamesOpenAI(rawJSON []byte) []string { |
| 130 | return collectToolNamesFromPath(rawJSON, "function.name") |
| 131 | } |
| 132 | |
| 133 | // collectToolNamesClaude extracts tool names from a Claude request. |
| 134 | func collectToolNamesClaude(rawJSON []byte) []string { |
no test coverage detected