File size: 446 Bytes
f89684b 6cfd158 f89684b 6cfd158 f89684b 6cfd158 | 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 | ---
title: Uncensored LLM
emoji: 🤖
colorFrom: blue
colorTo: green
sdk: docker
app_port: 7860
---
# Uncensored LLM API
Dolphin-Phi-2 (2.7B) - Uncensored text generation.
## Usage
```bash
curl -X POST https://YOUR_SPACE.hf.space/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"}
]
}'
|