-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructure.txt
26 lines (26 loc) · 1.32 KB
/
structure.txt
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
NLP/
├── data/
│ ├── processed/ # Processed data and embeddings
│ ├── raw/ # RAW data
│ ├── process_data.py # Functions to process data
├── src/
│ ├── __init__.py
│ ├── data_processing/
│ │ ├── __init__.py
│ │ ├── get_embeddings.py # Functions to generate embeddings
│ ├── database/
│ │ ├── __init__.py
│ │ ├── chromadb_search_functions.py # chromadb functions to retrieved responses
│ ├── models/
│ │ ├── __init__.py
│ │ ├── models.py # All the declared models (❌)
│ │ ├── main_reasoning.py # Main project (Not yet set up ❌)
│ ├── app.py # Main application logic
├── tests/
│ ├── __init__.py
│ ├── embedding_model_choice.py # Unit tests for the right embedding model
├── requirements.txt # Project dependencies
├── README.md # Project overview and instructions
├── setup.py # Package installation script
├── structure.txt # Struture of the project
└── .gitignore # Git ignore file