haiku.rag/tests/research/test_synthesis_agent.py
2025-09-17 08:54:54 +03:00

11 lines
405 B
Python

from haiku.rag.research.synthesis_agent import ResearchReport, SynthesisAgent
class TestSynthesisAgent:
"""Lean tests for SynthesisAgent without LLM mocking."""
def test_agent_initialization(self):
agent = SynthesisAgent(provider="openai", model="gpt-4")
assert agent.provider == "openai"
assert agent.model == "gpt-4"
assert agent.output_type == ResearchReport