Create Repository Structure.abbr
Browse files- Repository Structure.abbr +25 -0
Repository Structure.abbr
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
hierarchical-cognitive-framework/
|
2 |
+
β
|
3 |
+
βββ README.md
|
4 |
+
βββ LICENSE
|
5 |
+
βββ requirements.txt
|
6 |
+
βββ setup.py
|
7 |
+
βββ main.py
|
8 |
+
βββ config.yaml
|
9 |
+
βββ models/
|
10 |
+
β βββ master_agent.py
|
11 |
+
β βββ perception_agent.py
|
12 |
+
β βββ decision_agent.py
|
13 |
+
β βββ action_agent.py
|
14 |
+
βββ agents/
|
15 |
+
β βββ base_agent.py
|
16 |
+
β βββ perception_module.py
|
17 |
+
β βββ decision_module.py
|
18 |
+
β βββ action_module.py
|
19 |
+
βββ utils/
|
20 |
+
β βββ data_loader.py
|
21 |
+
β βββ helper_functions.py
|
22 |
+
βββ tests/
|
23 |
+
βββ test_master_agent.py
|
24 |
+
βββ test_perception_agent.py
|
25 |
+
βββ test_decision_agent.py
|