researchradar / src /generation /__init__.py
unknown
ResearchRadar: RAG-powered NLP research explorer
65dfa4b
raw
history blame contribute delete
482 Bytes
"""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",
]