Text Generation
Transformers
Safetensors
Vietnamese
qwen2
text-generation-inference
unsloth
legal
vietnamese
law
chat
qwen2.5
conversational
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 "jajajou/qwen2.5-7b-instruct-vn-law-tax" \
--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": "jajajou/qwen2.5-7b-instruct-vn-law-tax",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'Quick Links
Vietnamese Legal Assistant - Qwen2.5 7B
Đây là model trợ lý pháp lý tiếng Việt được fine-tune từ Qwen2.5-7B-Instruct.
Mô tả
Model này được huấn luyện để:
- Trả lời các câu hỏi pháp lý bằng tiếng Việt
- Đưa ra lời khuyên dựa trên luật pháp Việt Nam
- Hỗ trợ hiểu biết về các quy định pháp luật
Lưu ý
- Model này chỉ mang tính chất tham khảo
- Không thay thế cho lời khuyên của luật sư chuyên nghiệp
- Luôn tham khảo ý kiến chuyên gia khi cần
Uploaded finetuned model
- Developed by: jajajou
- License: apache-2.0
- Finetuned from model : unsloth/qwen2.5-7b-instruct-unsloth-bnb-4bit
This qwen2 model was trained 2x faster with Unsloth and Huggingface's TRL library.
- Downloads last month
- 4

Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "jajajou/qwen2.5-7b-instruct-vn-law-tax" \ --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": "jajajou/qwen2.5-7b-instruct-vn-law-tax", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'