-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject Structure.ini
More file actions
47 lines (47 loc) · 1.19 KB
/
Copy pathProject Structure.ini
File metadata and controls
47 lines (47 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
bob_ai/
│
├── core/
│ ├── __init__.py
│ ├── bob_ai.py # Main controller
│ ├── config.py # Configuration
│ └── logger.py # Logging setup
│
├── analyzers/
│ ├── __init__.py
│ ├── code_analyzer.py
│ ├── language_detector.py
│ └── syntax_parser.py
│
├── generators/
│ ├── __init__.py
│ ├── code_generator.py
│ ├── template_manager.py
│ └── code_formatter.py
│
├── screen/
│ ├── __init__.py
│ ├── screen_capture.py
│ ├── element_detector.py
│ └── text_recognition.py
│
├── learning/
│ ├── __init__.py
│ ├── repository_manager.py
│ ├── code_learner.py
│ └── knowledge_base.py
│
├── models/
│ ├── __init__.py
│ ├── language_models/
│ └── detection_models/
│
├── templates/
│ ├── python/
│ ├── javascript/
│ ├── java/
│ └── cpp/
│
└── utils/
├── __init__.py
├── file_handler.py
└── code_executor.py