codeBOKER commited on
Commit
16119ed
·
1 Parent(s): 511ba56

Add Hugging Face Space metadata

Browse files
Files changed (1) hide show
  1. README.md +36 -1
README.md CHANGED
@@ -1 +1,36 @@
1
- # customer_service
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Customer Service AI
3
+ emoji: 🤖
4
+ colorFrom: blue
5
+ colorTo: purple
6
+ sdk: docker
7
+ sdk_version: "latest"
8
+ app_file: main.py
9
+ pinned: false
10
+ ---
11
+
12
+ # Customer Service AI Backend
13
+
14
+ FastAPI backend for Hadhramout Bank AI customer service system.
15
+
16
+ ## Features
17
+ - Telegram webhook integration
18
+ - AI-powered responses using Groq
19
+ - Database integration with Supabase
20
+ - Vector search with Pinecone
21
+
22
+ ## API Endpoints
23
+ - `GET /` - Health check
24
+ - `POST /webhook` - Telegram webhook endpoint
25
+ - `POST /test` - Test webhook functionality
26
+ - `GET /dns-test` - DNS connectivity test
27
+ - `GET /ai-test` - AI response test
28
+
29
+ ## Deployment
30
+ This application is deployed on Hugging Face Spaces using Docker.
31
+
32
+ ## Local Development
33
+ ```bash
34
+ docker build -t customer-service .
35
+ docker run -p 8000:8000 customer-service
36
+ ```