Text Generation
Transformers
Safetensors
llama
Merge
mergekit
lazymergekit
stephenlzc/dolphin-llama3-zh-cn-uncensored
georgesung/llama3_8b_chat_uncensored
aifeifei798/llama3-8B-DarkIdol-2.1-Uncensored-32K
conversational
text-generation-inference
How to use from
SGLangUse Docker images
docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "Rupesh2/testing3" \
--host 0.0.0.0 \
--port 30000# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Rupesh2/testing3",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'Quick Links
Testing
Testing is a merge of the following models using mergekit:
- stephenlzc/dolphin-llama3-zh-cn-uncensored
- georgesung/llama3_8b_chat_uncensored
- aifeifei798/llama3-8B-DarkIdol-2.1-Uncensored-32K
🧩 Configuration
```yaml models:
- model: Orenguteng/Llama-3-8B-Lexi-Uncensored
- model: stephenlzc/dolphin-llama3-zh-cn-uncensored parameters: density: 0.53 weight: 0.4
- model: georgesung/llama3_8b_chat_uncensored parameters: density: 0.53 weight: 0.3
- model: aifeifei798/llama3-8B-DarkIdol-2.1-Uncensored-32K parameters: density: 0.53 weight: 0.3 merge_method: dare_ties base_model: Orenguteng/Llama-3-8B-Lexi-Uncensored parameters: int8_mask: true dtype: bfloat16 ```
- Downloads last month
- 5
Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Rupesh2/testing3" \ --host 0.0.0.0 \ --port 30000# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Rupesh2/testing3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'