meshai/meshai/backends/__init__.py
Ubuntu 784b2e3fea Remove FallbackBackend and generate_with_search from all backends
FallbackBackend was never configured in practice. generate_with_search
was an unused abstract method on all backends.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 00:24:24 +00:00

13 lines
292 B
Python

"""LLM backends for MeshAI."""
from .base import LLMBackend
from .openai_backend import OpenAIBackend
from .anthropic_backend import AnthropicBackend
from .google_backend import GoogleBackend
__all__ = [
"LLMBackend",
"OpenAIBackend",
"AnthropicBackend",
"GoogleBackend",
]