(dataChan <-chan []byte, rule *config.ToolCallInjectionRule, model string)
| 23 | } |
| 24 | |
| 25 | func (claudeFormat) InjectStream(dataChan <-chan []byte, rule *config.ToolCallInjectionRule, model string) <-chan []byte { |
| 26 | return InjectClaudeStream(dataChan, rule, model) |
| 27 | } |
| 28 | |
| 29 | func (claudeFormat) StripAndCapture(rawJSON []byte) ([]byte, []CapturedResult) { |
| 30 | return stripAndCaptureClaude(rawJSON) |
nothing calls this directly
no test coverage detected