context-ai / temp_init.py
chinmayjha's picture
Upload correct __init__.py content as temp file
e78a51c
raw
history blame
306 Bytes
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"]