Spaces:
Sleeping
Sleeping
File size: 306 Bytes
23323b2 |
1 2 3 4 5 6 7 8 9 10 |
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"]
|