Text Generation
Transformers
Safetensors
llama
Merge
reasoning
R1
Deca
Deca-AI
uncensored
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 "deca-ai/2-pro-coder" \
--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": "deca-ai/2-pro-coder",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'Quick Links
The Deca 2 PRO model, currently in BETA, is built on cutting-edge architectures like Perplexity's R1 1776, LLaMA 3, and Qwen 2, delivering extraordinary performance. With a focus on insane speed and high efficiency, Deca 2 PRO is revolutionizing text generation and setting new standards in the industry.
As more capabilities are added, Deca 2 PRO will evolve into a more powerful, any-to-any model in the future. While it’s focused on text generation for now, its foundation is designed to scale, bringing even more advanced functionalities to come.
This model is trained on code-related tasks.
- Downloads last month
- 8
Model tree for deca-ai/2-pro-coder
Base model
deca-ai/2-pro-base
Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "deca-ai/2-pro-coder" \ --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": "deca-ai/2-pro-coder", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'