Views
No views yet
qwen35 support.Sophea-Titan-1.Q4_K_M.gguf — 16.5 GBSophea-Titan-1.Q5_K_M.gguf — 19.2 GBSophea-Titan-1.Q8_0.gguf — 28.6 GBllama.cpp must be recent enough
to support the qwen35 architecture. If a runtime errors with "unknown model architecture: qwen35",
it simply needs a newer llama.cpp.| Runtime | Status |
|---|---|
| llama.cpp (recent build) | ✅ Verified — loads and runs |
| LM Studio | ✅ Works when its runtime is a qwen35-capable llama.cpp — use the latest LM Studio and select the newest runtime |
| Ollama (≥ 0.32) | ✅ Works — import the GGUF; serve chat with think: false (non-thinking model) |
| Quant | Size | Min RAM | Comfortable |
|---|---|---|---|
| Q4_K_M | 16.5 GB | 24 GB | 32 GB |
| Q5_K_M | 19.2 GB | 24 GB | 32 GB |
| Q8_0 | 28.6 GB | 32 GB | 48 GB |
1huggingface-cli download KIEFERSA/Sophea-Titan-1-GGUF Sophea-Titan-1.Q4_K_M.gguf \
2 --local-dir ./sophea --token $HF_TOKEN1llama-cli -m ./sophea/Sophea-Titan-1.Q4_K_M.gguf \
2 -p "Ποια είναι η πρωτεύουσα της Ελλάδας;" -n 64 --temp 0publisher/model/, then pick it in the model loader:1mkdir -p ~/.lmstudio/models/KIEFERSA/Sophea-Titan-1-GGUF
2cp ./sophea/Sophea-Titan-1.Q4_K_M.gguf ~/.lmstudio/models/KIEFERSA/Sophea-Titan-1-GGUF/1printf 'FROM ./sophea/Sophea-Titan-1.Q4_K_M.gguf\nPARAMETER temperature 0\n' > Modelfile
2ollama create sophea-titan-1 -f Modelfile
3ollama run sophea-titan-1 --think=false "Ποια είναι η πρωτεύουσα της Ελλάδας;"Non-thinking model: passthink: false(CLI--think=false, or"think": falsein the API) — otherwise the chat reply comes back empty. Ollama also serves an OpenAI-compatible API athttp://localhost:11434/v1.
llama-server:1llama-server -m ./sophea/Sophea-Titan-1.Q4_K_M.gguf \
2 --host 0.0.0.0 --port 8080 --api-key sk-local -c 8192base_url at the server:1from openai import OpenAI
2
3client = OpenAI(base_url="http://localhost:8080/v1", api_key="sk-local")
4resp = client.chat.completions.create(
5 model="sophea-titan-1", # any name — the loaded GGUF is served
6 messages=[{"role": "user", "content": "Ποια είναι η πρωτεύουσα της Ελλάδας;"}],
7 temperature=0,
8)
9print(resp.choices[0].message.content)curl:1curl http://localhost:8080/v1/chat/completions \
2 -H "Authorization: Bearer sk-local" -H "Content-Type: application/json" \
3 -d '{"model":"sophea-titan-1","messages":[{"role":"user","content":"Γεια σου"}],"temperature":0}'Q4_K_M (16.5 GB, recommended) · Q5_K_M (19.2 GB) · Q8_0 (28.6 GB, near-lossless).