Qwen3-4B-multilingual-sft-q4f16_1-MLC
13
—
by
willopcbeta
Language Model
OTHER
4B params
New
13 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
9GB+ RAM
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Device Compatibility
Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
4GB+ RAM
Code Examples
Chatbash
mlc_llm chat HF://willopcbeta/Qwen3-4B-multilingual-sft-q4f16_1-MLCChatbash
mlc_llm serve HF://willopcbeta/Qwen3-4B-multilingual-sft-q4f16_1-MLCREST Serverpython
from mlc_llm import MLCEngine
# Create engine
model = "HF://willopcbeta/Qwen3-4B-multilingual-sft-q4f16_1-MLC"
engine = MLCEngine(model)
# Run chat completion in OpenAI API.
for response in engine.chat.completions.create(
messages=[{"role": "user", "content": "What is the meaning of life?"}],
model=model,
stream=True,
):
for choice in response.choices:
print(choice.delta.content, end="", flush=True)
print("\n")
engine.terminate()Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.