gl-kp commited on
Commit
fd6879b
Β·
verified Β·
1 Parent(s): f60c104

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -10
README.md CHANGED
@@ -1,10 +1,19 @@
1
- ---
2
- title: Modular Rag Bot
3
- emoji: 🏒
4
- colorFrom: yellow
5
- colorTo: pink
6
- sdk: docker
7
- pinned: false
8
- ---
9
-
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
1
+ nutrition_disorder_bot/
2
+ β”œβ”€β”€ app.py # Main Streamlit application (root level for HF Spaces)
3
+ β”œβ”€β”€ requirements.txt # Dependencies
4
+ β”œβ”€β”€ .env # Environment variables (local development)
5
+ β”œβ”€β”€ README.md # Project documentation
6
+ β”œβ”€β”€ config/
7
+ β”‚ └── config.py # Configuration and environment setup
8
+ β”œβ”€β”€ models/
9
+ β”‚ └── models.py # Model initialization and setup
10
+ β”œβ”€β”€ core/
11
+ β”‚ β”œβ”€β”€ agent_state.py # State management
12
+ β”‚ β”œβ”€β”€ workflow_nodes.py # Core workflow functions
13
+ β”‚ β”œβ”€β”€ workflow_conditions.py # Conditional logic
14
+ β”‚ └── workflow.py # Workflow creation and tools
15
+ β”œβ”€β”€ services/
16
+ β”‚ β”œβ”€β”€ guardrails.py # Input filtering
17
+ β”‚ └── nutrition_bot.py # Main bot class
18
+ └── data/
19
+ └── nutritional_db/ # Vector database storage (will be created)