Views
No views yet
FROM ./Qwen3.5-9B-Uncensored-Q4_K_M.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER num_ctx 16384
TEMPLATE """{{- if .System }}{{ .System }}{{ end }}
{{- range .Messages }}
<|im_start|>{{ .Role }}
{{ .Content }}<|im_end|>
{{ end }}<|im_start|>assistant
"""
SYSTEM "You are a helpful assistant."1# Download the GGUF file
2huggingface-cli download LEONW24/Qwen3.5-9B-Uncensored Qwen3.5-9B-Uncensored-Q4_K_M.gguf --local-dir .
3
4# Create the Ollama model
5ollama create qwen35-uncensored -f Modelfile
6
7# Run
8ollama run qwen35-uncensored1# Download
2huggingface-cli download LEONW24/Qwen3.5-9B-Uncensored Qwen3.5-9B-Uncensored-Q4_K_M.gguf --local-dir .
3
4# Run with llama-cli
5llama-cli -m Qwen3.5-9B-Uncensored-Q4_K_M.gguf -p "Hello, who are you?" -n 256 -ngl 991pip install llama-cpp-python[server]
2
3python -m llama_cpp.server \
4 --model Qwen3.5-9B-Uncensored-Q4_K_M.gguf \
5 --n_gpu_layers 99 \
6 --chat_format chatmlhttp://localhost:8000/v1/chat/completions with any OpenAI-compatible client.1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="Qwen3.5-9B-Uncensored-Q4_K_M.gguf",
5 n_gpu_layers=-1, # offload all layers to GPU
6 n_ctx=16384,
7)
8
9output = llm.create_chat_completion(
10 messages=[{"role": "user", "content": "Hello!"}]
11)
12print(output["choices"][0]["message"]["content"])| Property | Value |
|---|---|
| Architecture | Qwen 3.5 |
| Parameters | ~9B |
| Format | GGUF (Q4_K_M quantization) |
| File size | ~6.3 GB |
| Context window | Up to 131072 tokens |
| Languages | English, Chinese, multilingual |
| License | Apache 2.0 |

You're writing a paper
-> PhdBooster is browsing videos for you
-> AI "sees" each video
-> Matches your taste? Auto like & bookmark
-> Platform algorithm learns your preferences
-> You open your phone — feed is perfect| Component | Choice |
|---|---|
| Agent Framework | OpenClaw |
| Browser Automation | OpenClaw Browser (Chrome CDP) |
| Primary LLM | step-3.5-flash:free (OpenRouter) |
| Primary Vision | Kimi 2.5 (Moonshot AI) |
| Fallback Vision | This model (Ollama) |
| Platforms | Douyin, Xiaohongshu |
OLLAMA_NUM_PARALLEL and adjust num_gpu as needed.