mashrur950's picture
Initial commit: FleetMind MCP with GitHub Actions auto-sync
d69447e
raw
history blame
309 Bytes
"""
AI Provider implementations for FleetMind chat
Supports multiple AI providers (Anthropic Claude, Google Gemini)
"""
from .base_provider import AIProvider
from .claude_provider import ClaudeProvider
from .gemini_provider import GeminiProvider
__all__ = ['AIProvider', 'ClaudeProvider', 'GeminiProvider']