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 "Kwai-AutoSQL/Kwai-AutoSQL-32B" \
    --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": "Kwai-AutoSQL/Kwai-AutoSQL-32B",
		"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 "Kwai-AutoSQL/Kwai-AutoSQL-32B" \
        --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": "Kwai-AutoSQL/Kwai-AutoSQL-32B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Kwai-AutoSQL-32B

This repository only contains fine-tuned model weights, without training and inference scripts.

Base Model

Original base model: Qwen/Qwen3-32B The base model is released under Apache License 2.0.

License Statement

  1. All model weights, config.json, tokenizer files and all model binary assets in this repo are derivative works of Qwen/Qwen3-32B, governed by Apache License 2.0. Copyright 2024 Alibaba Cloud

  2. Repository descriptive documentation (README.md) and the root LICENSE file are licensed under MIT License. Full MIT license text can be found in the root LICENSE file. Copyright (c) 2026 Kuaishou Business Team

Downloads last month
286
Safetensors
Model size
33B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Kwai-AutoSQL/Kwai-AutoSQL-32B

Quantizations
1 model