File size: 507 Bytes
ff0e97f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
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"
]