-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfolder_structure.txt
More file actions
48 lines (48 loc) · 1.16 KB
/
folder_structure.txt
File metadata and controls
48 lines (48 loc) · 1.16 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
48
astra-ai/
│
├── assets/
│ └── astra-logo.svg
│
├── prompts/
│ ├── system_prompt.md
│ └── examples/
│ └── sample_user_prompts.md
│
├── src/
│ ├── core/ # Main thinking logic
│ │ ├── engine.py
│ │ ├── router.py
│ │ └── config.py
│ │
│ ├── safety/ # Safety guardrails
│ │ ├── filters.py
│ │ ├── refusal_logic.py
│ │ └── safety_policies.md
│ │
│ ├── interface/ # user facing components
│ │ ├── cli.py
│ │ ├── api.py
│ │ └── utils.py
│ │
│ └── models/
│ └── backend_adapter.py
│
├── examples/
│ ├── basic_usage.py
│ └── integration_demo.py
│
├── tests/
│ ├── test_core.py
│ ├── test_safety.py
│ └── test_interface.py
│
├── docs/
│ ├── architecture.md
│ ├── safety_overview.md
│ └── roadmap.md
│
├── .gitignore
├── LICENSE
├── README.md
├── CONTRIBUTING.md
└── CODE_OF_CONDUCT.md