haiku.rag/tests/sandbox/test_models.py
2026-05-19 11:39:20 +03:00

8 lines
255 B
Python

from haiku.rag.sandbox import AnalysisResult
class TestAnalysisResult:
def test_create_result(self):
result = AnalysisResult(answer="The answer is 42")
assert result.answer == "The answer is 42"
assert result.citations == []