chinmayjha commited on
Commit
9b20696
·
1 Parent(s): e78a51c

Upload correct __init__.py content

Browse files
Files changed (1) hide show
  1. correct_init.py +9 -0
correct_init.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ from . import agents, rag
2
+
3
+ # Optional import for evaluation - may cause issues in some environments
4
+ try:
5
+ from .evaluation import evaluate
6
+ __all__ = ["rag", "agents", "evaluate"]
7
+ except ImportError as e:
8
+ print(f"Warning: Could not import evaluation module: {e}")
9
+ __all__ = ["rag", "agents"]