""" Anthropic/Claude integration module. Provides model selection with automatic fallback between Claude and Ollama. """ from src.anthropic.model_selector import ( check_claude_health, get_model, get_tool_choice_settings, is_claude_available, ) __all__ = [ "check_claude_health", "get_model", "get_tool_choice_settings", "is_claude_available", ]