context-ai / __init__.py
chinmayjha's picture
Fix corrupted __init__.py file with proper Python code
23323b2
from . import agents, rag
# Optional import for evaluation - may cause issues in some environments
try:
from .evaluation import evaluate
__all__ = ["rag", "agents", "evaluate"]
except ImportError as e:
print(f"Warning: Could not import evaluation module: {e}")
__all__ = ["rag", "agents"]