Spaces:
Running
Running
| """Generation module — LLM backends and RAG orchestration.""" | |
| from src.generation.groq_backend import GroqBackend | |
| from src.generation.llm_backend_base import GenerationConfig, GenerationResult, LLMBackend | |
| from src.generation.ollama_backend import OllamaBackend | |
| from src.generation.rag_engine import RAGEngine, RAGResponse | |
| __all__ = [ | |
| "GenerationConfig", | |
| "GenerationResult", | |
| "GroqBackend", | |
| "LLMBackend", | |
| "OllamaBackend", | |
| "RAGEngine", | |
| "RAGResponse", | |
| ] | |