Spaces:
Running
Running
File size: 1,197 Bytes
7800396 e6dbeb3 7800396 e6dbeb3 | 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 | ---
title: Beni Suef Chatbot
emoji: 🗺️
colorFrom: green
colorTo: blue
sdk: docker
pinned: false
---
# 🗺️ Beni Suef Chatbot API
شاتبوت عربي للبحث عن الأماكن في مدينة بني سويف.
## الـ Endpoints
| Method | URL | الوصف |
|--------|-----|-------|
| GET | `/` | تأكيد إن الـ API شغال |
| GET | `/health` | حالة الموديلز |
| POST | `/chat` | إرسال رسالة |
| DELETE | `/session/{id}` | مسح محادثة |
## مثال على الاستخدام
```bash
curl -X POST "https://youmnaaaa-gp-chatbot.hf.space/chat" \
-H "Content-Type: application/json" \
-d '{"message": "عايز مطعم قريب", "session_id": "user_1"}'
```
**Response:**
```json
{
"reply": "🍽️ لقيتلك ...",
"intent": "nearest_restaurant",
"confidence": 0.97,
"entities": {"location": "..."},
"session_id": "user_1",
"best_place": { ... }
}
```
## الموديلز المستخدمة
- **Intent Model:** AraBERT fine-tuned لتصنيف النوايا
- **Entity Model:** BERT-based NER للـ entities العربية
- **Semantic Model:** Multilingual Sentence Transformers للبحث الدلالي
|