Test analyzer for raw-string mode.
| 167 | |
| 168 | |
| 169 | class _RawTextAnalyzer(LLMAnalyzerBase): |
| 170 | """Test analyzer for raw-string mode.""" |
| 171 | |
| 172 | response_schema = None |
| 173 | |
| 174 | def parse_response(self, response: object, batch: Batch) -> list[str]: |
| 175 | assert isinstance(response, str) |
| 176 | return [response] |
| 177 | |
| 178 | |
| 179 | # --------------------------------------------------------------------------- |
no outgoing calls