Instructions to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF", filename="Qwen3.5-4B-NSFW-ARA-Heretic-Literotica.i1.Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
- Ollama
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with Ollama:
ollama run hf.co/Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF to start chatting
- Pi
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with Docker Model Runner:
docker model run hf.co/Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
- Lemonade
How to use Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF-Q4_K_M
List all available models
lemonade list
Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF
The i1 release introduces models quantized with an Importance Matrix, significantly improving performance on key prompt structures.
Overview
This repository contains GGUF (GPT-Generated Unified Format) versions of the Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica model, a specialized language model built on the Qwen 3.5 architecture (4B parameters). It is designed for immersive erotic storytelling and creative prose, inheriting the technical uncensorship approaches of the ARA and Heretic frameworks.
These GGUF models have been quantized using an Importance Matrix (Imatrix), making them more robust and preserving key knowledge that is often lost in standard quantization.
What is GGUF?
GGUF is a binary format designed for single-file deployment of large language models, making it easy to use with tools like llama.cpp. It is a successor to the GGML format and offers better performance, flexibility, and metadata support.
The i1 Imatrix Quantization
The .i1. in the filenames signifies that these models were quantized using an Importance Matrix. This advanced technique measures the sensitivity of different weights in the neural network and uses this information to quantize the model more intelligently.
Benefits:
- Reduced Perplexity: Imatrix quantization significantly lowers perplexity compared to standard methods.
- Preserved Knowledge: It helps retain critical information and nuances that are often damaged during the quantization process.
- Higher Quality: The resulting models provide more coherent and contextually accurate outputs, especially for complex creative tasks.
Available Models
The following quantized models are available, offering a trade-off between performance and resource usage:
| File Name | Quantization | Recommended Use |
|---|---|---|
Qwen3.5-4B-NSFW-ARA-Heretic-Literotica.i1.Q4_K_M.gguf |
Q4_K_M | Balanced quality, good for most use cases. |
Qwen3.5-4B-NSFW-ARA-Heretic-Literotica.i1.Q5_K_M.gguf |
Q5_K_M | High-quality, recommended for creative prose. |
Qwen3.5-4B-NSFW-ARA-Heretic-Literotica.i1.Q6_K.gguf |
Q6_K | Very high quality, for demanding tasks. |
These files were renamed to include the .i1. tag to signify the Imatrix quantization. You may need to rename them locally if you have already downloaded the old files.
Usage & Inference
These models are designed to be used with llama.cpp and other GGUF-compatible backends.
Example with llama.cpp:
- Download
llama.cpp:git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp make - Download a GGUF model from this repository.
- Run inference:
./main -m <path_to_gguf_model> -p "USER: [Your prompt here] ASSISTANT:" -n 256 --temp 0.8 -c 4096
Prompt Format
This model uses the standard ChatML format, adapted for a raw GGUF interface: <|im_start|>system You are a creative and descriptive erotic storyteller.<|im_end|> <|im_start|>user [Your prompt here]<|im_end|> <|im_start|>assistant
When using a text-based interface like llama.cpp, you can format your prompt like this:
<|im_start|>system
You are a creative and descriptive erotic storyteller.<|im_end|>
<|im_start|>user
She walked into the room, her eyes sparkling with a mischievous glint.<|im_end|>
<|im_start|>assistant
Inference Settings
For optimal creative output, the following parameters are recommended:
- Temperature: 0.75 - 0.85
- Top-p: 0.90
- Repetition Penalty: 1.1
Responsible Use & Disclaimer
This model is intended for adult audiences (18+) and generates explicit NSFW content. It is built on uncensored foundations (ARA/Heretic) and is designed to follow creative prompts without artificial refusal. Users are responsible for ensuring their use of the model complies with local laws and regulations. The model is a tool for creative fiction and should not be used to generate illegal or non-consensual content.
- Downloads last month
- 6,616
4-bit
5-bit
6-bit
Model tree for Sinbad-The-Sailor/Qwen3.5-4B-NSFW-ARA-Heretic-Literotica-i1-GGUF
Base model
Qwen/Qwen3.5-4B-Base