Qwen3-Swallow-32B-RL-v0.2-AWQ-INT4

200
license:apache-2.0
by
tokyotech-llm
Language Model
OTHER
32B params
New
200 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
72GB+ RAM
Mobile
Laptop
Server
Quick Summary

AI model with specialized capabilities.

Device Compatibility

Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
30GB+ RAM

Code Examples

Usagebashvllm
vllm serve tokyotech-llm/Qwen3-Swallow-32B-RL-v0.2-AWQ-INT4 --reasoning-parser qwen3
Usagebash
sglang serve --model-path tokyotech-llm/Qwen3-Swallow-32B-RL-v0.2-AWQ-INT4 --port 8000 --reasoning-parser qwen3
pythonopenai
from openai import OpenAI
model_name = "tokyotech-llm/Qwen3-Swallow-32B-RL-v0.2-AWQ-INT4"
client = OpenAI(
    base_url="http://localhost:8000/v1",
    api_key="EMPTY"
)
result = client.chat.completions.create(
    model=model_name,
    messages=[
        {"role": "user", "content": "Create a casual one-day Tokyo itinerary in Japanese."}
    ],
    max_tokens=4096,
    temperature=0.6,
    top_p=0.95,
    extra_body={
        "top_k": 20,
        "min_p": 0,
    }
)
print("Reasoning:")
print(result.choices[0].message.reasoning)
print("
Response:")
print(result.choices[0].message.content)

Deploy This Model

Production-ready deployment in minutes

Together.ai

Instant API access to this model

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.