""" LangGraph Bird Classification Agents Simple, modular agents for bird identification using MCP servers. """ from .config import AgentConfig from .agents import AgentFactory from .mcp_clients import MCPClientManager from .prompts import get_prompt_for_agent_type, BIRDSCOPE_AI_PROMPT, NUTHATCH_BIRDSCOPE_PROMPT __version__ = "0.1.0" __all__ = [ "AgentConfig", "AgentFactory", "MCPClientManager", "get_prompt_for_agent_type", "BIRDSCOPE_AI_PROMPT", "NUTHATCH_BIRDSCOPE_PROMPT" ]