Trigger82 commited on
Commit
3a128e3
Β·
verified Β·
1 Parent(s): 2f51a42

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -4
README.md CHANGED
@@ -1,10 +1,29 @@
1
  ---
2
- title: helper
3
- emoji: ☘️
4
  colorFrom: green
5
  colorTo: blue
6
  sdk: docker
7
- pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: 𝕴 𝖆𝖒 π–π–Žπ–’ API
3
+ emoji: πŸš€
4
  colorFrom: green
5
  colorTo: blue
6
  sdk: docker
7
+ pinned: true
8
+ license: mit
9
+ short_description: Test
10
  ---
11
 
12
+ # 𝕴 𝖆𝖒 π–π–Žπ–’ Chat API
13
+
14
+ Emotionally intelligent chatbot API with memory. Use the endpoint below to integrate with your applications.
15
+
16
+ ## API Endpoints
17
+
18
+ ### Chat Endpoint
19
+ `POST /chat`
20
+
21
+ **Parameters:**
22
+ - `query`: Your message (required)
23
+ - `session_id`: Conversation ID (optional, default="default")
24
+
25
+ **Example:**
26
+ ```bash
27
+ curl -X POST "https://ochinpo-helper.hf.space/chat" \
28
+ -d "query=How's it going?" \
29
+ -d "session_id=user123"