How to use from
SGLang
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "appvoid/arco-2-reasoning-20k" \
    --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": "appvoid/arco-2-reasoning-20k",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use 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 "appvoid/arco-2-reasoning-20k" \
        --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": "appvoid/arco-2-reasoning-20k",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Uploaded model

  • Developed by: appvoid
  • License: apache-2.0
  • Finetuned from model : appvoid/arco-2

fine-tuned on 20k samples from KingNish reasoning dataset

format is like the template in the dataset:

<|im_start|>user
What is javascript?
<|im_end|>
<|im_start|>reasoning
I can answer directly to this question.
<|im_end|>
<|im_start|>assistant
That's a great question! JavaScript is a programming language that is commonly used to create interactive web pages and applications. It's known for its ability to create dynamic, interactive content and it's used by many web developers to create web pages, mobile applications, and more.

screenshot

Downloads last month
1
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for appvoid/arco-2-reasoning-20k

Base model

appvoid/arco-2
Finetuned
(11)
this model
Merges
21 models
Quantizations
3 models