(&self, output: &str, schema: &serde_json::Value)
| 248 | } |
| 249 | |
| 250 | async fn validate_output(&self, output: &str, schema: &serde_json::Value) -> ValidationResult { |
| 251 | self.validator.validate_against_schema(output, schema) |
| 252 | } |
| 253 | |
| 254 | fn llm_provider(&self) -> &LlmProvider { |
| 255 | &self.llm_provider |
nothing calls this directly
no test coverage detected