Skip to content

Commit d3df464

Browse files
taruntarun
authored andcommitted
removed logs
1 parent 2a833e2 commit d3df464

File tree

2 files changed

+14
-19
lines changed

2 files changed

+14
-19
lines changed

Sources/Agentic_System/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)