MCPcopy Create free account
hub / github.com/NVIDIA/SkillSpector / _RawTextAnalyzer

Class _RawTextAnalyzer

tests/nodes/test_llm_analyzer_base.py:169–176  ·  view source on GitHub ↗

Test analyzer for raw-string mode.

Source from the content-addressed store, hash-verified

167
168
169class _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# ---------------------------------------------------------------------------

Calls

no outgoing calls