Try Seedance 2.5 Uncensored Video from ByteDance →
Models
Agents
Workflows
Studio
PricingBlogDocs
ExploreDiscover models by categoryBrowse All ModelsBrowse the complete catalogSee FavoritesSign in to view saved models
Generative Media AgentCreate and edit media by chattingWorkflow AgentBuild visual workflows with Agent
OverviewThe platform at a glanceLearnSkills, knowledge, guardrailsAnatomyWhat makes agents reasonBuild Your AgentPick skills, set tier, deploy
Pre-built AgentsBrowse the catalog
Agent Usecases
Ad Campaign ManagerApp Event ManagerApp Review RepliesBarber BookingCustomer Win-BackEcommerce ListingsRestaurant Reviews
Sign InStart Building

Task History

Click to see output list

No tasks yet

Go to Models
Explore models/
LLM & ChatActive

Qwen / Qwen1.5-0.5B-Chat

Qwen1.5-0.5B-Chat

byqwen

Qwen1.5-0.5B-Chat is a lightweight conversational AI model with 500 million parameters, designed for efficient and interactive chat-based applications. Despite its smaller size, it offers fast performance and reliable natural language understanding, making it ideal for real-time AI interactions on resource-constrained systems.

ChatLLMRAGQwen1.5 ChatBf16
Model ID
Qwen1.5-0.5B-Chat
Provider
qwen
Added
1736807325
Qwen1.5-0.5B-Chat
0
Comments
Average rating : 0 (0 users)
Providerqwen
ModelQwen1.5-0.5B-Chat
ChatLLMRAGQwen1.5 Chat
wiro playground—qwen/Qwen1.5-0.5B-Chat
Reset to defaults

Prompt to send to the model.

Sample outputs
Qwen-Qwen1.5-0.5B-Chat-sample-1.txt
Added 1736807325






Qwen1.5-0.5B-Chat







Introduction


Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen, the improvements include:



  • 8 model sizes, including 0.5B, 1.8B, 4B, 7B, 14B, 32B and 72B dense models, and an MoE model of 14B with 2.7B activated;

  • Significant performance improvement in human preference for chat models;

  • Multilingual support of both base and chat models;

  • Stable support of 32K context length for models of all sizes

  • No need of trust_remote_code.


For more details, please refer to our blog post and GitHub repo.







Model Details


Qwen1.5 is a language model series including decoder language models of different model sizes. For each size, we release the base language model and the aligned chat model. It is based on the Transformer architecture with SwiGLU activation, attention QKV bias, group query attention, mixture of sliding window attention and full attention, etc. Additionally, we have an improved tokenizer adaptive to multiple natural languages and codes. For the beta version, temporarily we did not include GQA (except for 32B) and the mixture of SWA and full attention.







Training details


We pretrained the models with a large amount of data, and we post-trained the models with both supervised finetuning and direct preference optimization.







Requirements


The code of Qwen1.5 has been in the latest Hugging face transformers and we advise you to install transformers>=4.37.0, or you might encounter the following error:


KeyError: 'qwen2'






Quickstart


Here provides a code snippet with apply_chat_template to show you how to load the tokenizer and model and how to generate contents.


from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda" # the device to load the model onto

model = AutoModelForCausalLM.from_pretrained(
"Qwen/Qwen1.5-0.5B-Chat",
torch_dtype="auto",
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen1.5-0.5B-Chat")

prompt = "Give me a short introduction to large language model."
messages = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(device)

generated_ids = model.generate(
model_inputs.input_ids,
max_new_tokens=512
)
generated_ids = [
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]

response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]

For quantized models, we advise you to use the GPTQ, AWQ, and GGUF correspondents, namely Qwen1.5-0.5B-Chat-GPTQ-Int4, Qwen1.5-0.5B-Chat-GPTQ-Int8, Qwen1.5-0.5B-Chat-AWQ, and Qwen1.5-0.5B-Chat-GGUF.







Tips



  • If you encounter code switching or other bad cases, we advise you to use our provided hyper-parameters in generation_config.json.







Citation


If you find our work helpful, feel free to give us a cite.


@article{qwen,
title={Qwen Technical Report},
author={Jinze Bai and Shuai Bai and Yunfei Chu and Zeyu Cui and Kai Dang and Xiaodong Deng and Yang Fan and Wenbin Ge and Yu Han and Fei Huang and Binyuan Hui and Luo Ji and Mei Li and Junyang Lin and Runji Lin and Dayiheng Liu and Gao Liu and Chengqiang Lu and Keming Lu and Jianxin Ma and Rui Men and Xingzhang Ren and Xuancheng Ren and Chuanqi Tan and Sinan Tan and Jianhong Tu and Peng Wang and Shijie Wang and Wei Wang and Shengguang Wu and Benfeng Xu and Jin Xu and An Yang and Hao Yang and Jian Yang and Shusheng Yang and Yang Yao and Bowen Yu and Hongyi Yuan and Zheng Yuan and Jianwei Zhang and Xingxuan Zhang and Yichang Zhang and Zhenru Zhang and Chang Zhou and Jingren Zhou and Xiaohuan Zhou and Tianhang Zhu},
journal={arXiv preprint arXiv:2309.16609},
year={2023}
}

API quick start

Run Qwen1.5-0.5B-Chat with a single API call.

POST https://api.wiro.ai/v1/Run/Qwen/Qwen1.5-0.5B-Chat
{
  "prompt": "What are some interesting historical even…",
  "user_id": "...",
  "session_id": "...",
  "system_prompt": "You are a helpful, respectful and honest …"
}
View full API docs

Discover, test, and run AI models, build workflows and agents with one unified API.

All systems operational
WiroAboutBlogCareersContact
ProductModelsAgentsPricingPartnerChangelogStatusFAQ
Getting StartedIntroductionAuthenticationProjectsCode ExamplesWiro MCP ServerSelf-Hosted MCPn8n IntegrationLLMs.txt
API ReferenceModelsRun a ModelModel ParametersTasksLLM & Chat StreamingWebSocketRealtime VoiceFiles
© 2026 Wiro AI. All rights reserved.
PrivacyTermsData Deletion