dnnsdunca commited on
Commit
9e75aee
β€’
1 Parent(s): c36d1d8

Create Repository Structure.abbr

Browse files
Files changed (1) hide show
  1. 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