Views
No views yet
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen2.5-3B-Instruct |
| Parameters | 3 Billion |
| Quantization | 4-bit (bitsandbytes / bnb-4bit) |
| Fine-tuning Method | QLoRA (Rank 16, Alpha 32) |
| Primary Task | Context-Driven Legal Q&A / Legal Agent |
1!python -m vllm.entrypoints.openai.api_server \
2 --model unsloth/Qwen2.5-3B-Instruct-bnb-4bit \
3 --max-model-len 2048 \ # Can be changed
4 --dtype float16 \
5 --api-key 'your-api-key-here' \
6 --max-num-seqs 16 \
7 --trust-remote-code \
8 --gpu-memory-utilization 0.85 \ # Can be changed
9 --enforce-eager \
10 --enable-auto-tool-choice \
11 --tool-call-parser hermes \
12 --port 8000 &