11 lines
403 B
Python
11 lines
403 B
Python
from haiku.rag.research.search_agent import SearchSpecialistAgent
|
|
|
|
|
|
class TestSearchSpecialistAgent:
|
|
"""Lean tests for SearchSpecialistAgent without LLM mocking."""
|
|
|
|
def test_agent_initialization(self):
|
|
agent = SearchSpecialistAgent(provider="openai", model="gpt-4")
|
|
assert agent.provider == "openai"
|
|
assert agent.model == "gpt-4"
|
|
assert agent.output_type is str
|