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