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

Upload correct __init__.py content as temp file

Browse files
Files changed (1) hide show
  1. temp_init.py +9 -0
temp_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"]