Views
No views yet
[!NOTE] Qwen 3 is not the latest model in the Qwen series. Qwen 3.5 is now available.
pip install nobodywho1from nobodywho import Chat
2
3chat = Chat("huggingface:NobodyWho/Qwen_Qwen3-1.7B-GGUF/Qwen_Qwen3-1.7B-Q4_K_M.gguf")
4response = chat.ask("What is the capital of Denmark?").completed()
5print(response) # Copenhagen!1chat = Chat(
2 "huggingface:NobodyWho/Qwen_Qwen3-1.7B-GGUF/Qwen_Qwen3-1.7B-Q4_K_M.gguf",
3 template_variables={"enable_thinking": True},
4)
5response = chat.ask("Solve this step by step: if x + 3 = 7, what is x?").completed()
6print(response) # 4wget https://huggingface.co/NobodyWho/Qwen_Qwen3-1.7B-GGUF/resolve/main/Qwen_Qwen3-1.7B-Q4_K_M.ggufChat("./Qwen_Qwen3-1.7B-Q4_K_M.gguf").| Property | Value |
|---|---|
| Parameters | 1.7B |
| Context length | 32,768 tokens |
| Knowledge cutoff | Unknown |
| License | Apache 2.0 |
| Base model | Qwen/Qwen3-1.7B |