We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a833e2 commit d3df464Copy full SHA for d3df464
Sources/Agentic_System/__init__.py
@@ -0,0 +1,14 @@
1
+import importlib.util
2
+import sys
3
+from pathlib import Path
4
+
5
+_module_dir = Path(__file__).parent
6
+_module_path = _module_dir / "rises-the-fog.py"
7
8
+if str(_module_dir) not in sys.path:
9
+ sys.path.insert(0, str(_module_dir))
10
11
+_spec = importlib.util.spec_from_file_location("rises_the_fog", _module_path)
12
+rises_the_fog = importlib.util.module_from_spec(_spec)
13
+_spec.loader.exec_module(rises_the_fog)
14
Sources/Agentic_System/agents/fog_logs/rises_the_fog6.log
0 commit comments