""" Anthropic/Claude integration module. Provides model selection with Ollama as primary backend and Claude as the cloud fallback. """ from src.anthropic.model_selector import ( check_claude_health, check_ollama_health, get_model, get_tool_choice_settings, is_claude_available, is_ollama_available, resolve_backend, ) __all__ = [ "check_claude_health", "check_ollama_health", "get_model", "get_tool_choice_settings", "is_claude_available", "is_ollama_available", "resolve_backend", ]