sanilahmed2019's picture
Fix README for docker SDK
295bc31
raw
history blame contribute delete
571 Bytes
"""
RAG Agent and API Layer - __init__.py
Initialization module for the RAG Agent and API Layer system.
"""
__version__ = "1.0.0"
__author__ = "AI Engineer"
__license__ = "MIT"
# Import main components for easy access
from .main import app
from .config import Config, get_config, validate_config
from .openrouter_agent import OpenRouterAgent
from .retrieval import QdrantRetriever
# Define what gets imported with "from rag_agent_api import *"
__all__ = [
"app",
"Config",
"get_config",
"validate_config",
"OpenRouterAgent",
"QdrantRetriever"
]