Commit ·
16a7164
1
Parent(s): 131da12
Add Hugging Face Space metadata in README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: SentimentDetectiontest
|
| 3 |
+
emoji: 🎓
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Educational Sentiment Chatbot
|
| 11 |
+
|
| 12 |
+
This is a Socratic educational tutor chatbot designed to dynamically adjust its response tone based on the student's detected sentiment (confusion, frustration, boredom, confidence, or neutral).
|
| 13 |
+
|
| 14 |
+
It evaluates four different agent/classifier flows:
|
| 15 |
+
- **Option A**: Gemini 3.1 Flash Lite (Double-Pass via LangGraph)
|
| 16 |
+
- **Option B**: Gemini Single-Pass (Pre-optimized, low latency)
|
| 17 |
+
- **Option C**: DistilRoBERTa Distribution + Gemini
|
| 18 |
+
- **Option D**: Local DistilRoBERTa Classifier + Gemini
|
| 19 |
+
|
| 20 |
+
## Deploying to Hugging Face Spaces
|
| 21 |
+
This repository is configured to deploy directly to Hugging Face Spaces via Docker.
|
| 22 |
+
|
| 23 |
+
### Requirements:
|
| 24 |
+
- A `GEMINI_API_KEY` set as a Secret in the space's settings.
|