akcoderspark commited on
Commit
6cfd158
·
verified ·
1 Parent(s): 40d3c46

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -7
README.md CHANGED
@@ -1,11 +1,24 @@
1
  ---
2
- title: Uncensored Text Llm
3
- emoji: 😻
4
- colorFrom: pink
5
- colorTo: yellow
6
  sdk: docker
7
- pinned: false
8
- license: mit
9
  ---
10
 
11
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Uncensored LLM
3
+ emoji: 🤖
4
+ colorFrom: blue
5
+ colorTo: green
6
  sdk: docker
7
+ app_port: 7860
 
8
  ---
9
 
10
+ # Uncensored LLM API
11
+
12
+ Dolphin-Phi-2 (2.7B) - Uncensored text generation.
13
+
14
+ ## Usage
15
+
16
+ ```bash
17
+ curl -X POST https://YOUR_SPACE.hf.space/v1/chat/completions \
18
+ -H "Content-Type: application/json" \
19
+ -d '{
20
+ "messages": [
21
+ {"role": "system", "content": "You are a helpful assistant."},
22
+ {"role": "user", "content": "Hello!"}
23
+ ]
24
+ }'