Instructions to use yashsutorichat/Lotus-1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use yashsutorichat/Lotus-1-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 yashsutorichat/Lotus-1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf yashsutorichat/Lotus-1-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 yashsutorichat/Lotus-1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf yashsutorichat/Lotus-1-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 yashsutorichat/Lotus-1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf yashsutorichat/Lotus-1-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 yashsutorichat/Lotus-1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf yashsutorichat/Lotus-1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/yashsutorichat/Lotus-1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use yashsutorichat/Lotus-1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "yashsutorichat/Lotus-1-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": "yashsutorichat/Lotus-1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/yashsutorichat/Lotus-1-GGUF:Q4_K_M
- Ollama
How to use yashsutorichat/Lotus-1-GGUF with Ollama:
ollama run hf.co/yashsutorichat/Lotus-1-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use yashsutorichat/Lotus-1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf yashsutorichat/Lotus-1-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "yashsutorichat/Lotus-1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use yashsutorichat/Lotus-1-GGUF with Docker Model Runner:
docker model run hf.co/yashsutorichat/Lotus-1-GGUF:Q4_K_M
- Lemonade
How to use yashsutorichat/Lotus-1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull yashsutorichat/Lotus-1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Lotus-1-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use yashsutorichat/Lotus-1-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 yashsutorichat/Lotus-1-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 yashsutorichat/Lotus-1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use yashsutorichat/Lotus-1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf yashsutorichat/Lotus-1-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 "yashsutorichat/Lotus-1-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"
Lotus-1 GGUF
GGUF quantizations of Lotus-1, the 35B-A3B roleplay model behind Sutorichat, for KoboldCpp, llama.cpp, LM Studio and text-generation-webui. Only about 3B parameters are active per token, so the model decodes at small-model speed: the quant you pick is about what fits in memory, not about speed.
Converted with llama.cpp convert_hf_to_gguf.py (bf16) and llama-quantize,
no importance matrix. The embedded chat template defaults to non-thinking,
so every loader that reads the GGUF template produces the right prompt with no
flags.
| file | bits | size | fits |
|---|---|---|---|
| Lotus-1-Q3_K_M.gguf | 3 | ~16 GB | 16 GB VRAM, or 24 GB RAM |
| Lotus-1-Q4_K_S.gguf | 4 | ~21 GB | 24 GB VRAM |
| Lotus-1-Q4_K_M.gguf | 4 | ~22 GB | 24 GB VRAM (recommended) |
| Lotus-1-Q5_K_M.gguf | 5 | ~26 GB | 32 GB |
| Lotus-1-Q6_K.gguf | 6 | ~29 GB | 32 GB, near-lossless |
| Lotus-1-Q8_0.gguf | 8 | ~37 GB | 48 GB |
| Lotus-1-BF16-*.gguf (split) | 16 | ~70 GB | re-quantizing |
Sizes are before the KV cache; at 32k context budget another 2 to 3 GB.
Because experts are offloaded well, partial GPU offload works: a 12 GB card
plus 32 GB of RAM runs Q4_K_M at usable speed with --n-gpu-layers set to what
fits.
SillyTavern
- Load the GGUF with a 32k context:
- KoboldCpp:
koboldcpp --model Lotus-1-Q4_K_M.gguf --contextsize 32768 --gpulayers 99 - llama.cpp:
llama-server -m Lotus-1-Q4_K_M.gguf -c 32768 -ngl 99 --jinja - LM Studio: load the file, set context to 32768 in the model settings.
- KoboldCpp:
- SillyTavern, API: Text Completion, pick your backend.
- Advanced Formatting: import
sillytavern/Lotus-1.context.json(Context Template) andsillytavern/Lotus-1.instruct.json(Instruct Template). Turn the System Prompt off; the preamble the model expects is in the context template. - Samplers: import
sillytavern/Lotus-1.textgen.json. That is temperature 0.9, top_p 0.95, top_k 20, repetition penalty 1.05, 700 response tokens.
Keep the temperature at 0.8 or above. Below that the model starts repeating across turns; repetition penalty, not temperature, is what controls loops here.
Prompt format
ChatML with thinking disabled. What the instruct preset produces:
<|im_start|>system
You are {char} in an ongoing roleplay conversation.
Stay in character, respond naturally to the user's latest message, preserve continuity, and do not describe or control the user's actions.
Character and scenario context:
{card}<|im_end|>
<|im_start|>user
{message}<|im_end|>
<|im_start|>assistant
<think>
</think>
The empty <think> block is part of the format: the model was trained with
thinking off, and the assistant prefix must include it in Text Completion mode.
The instruct preset does this for you.
The context preset renders the card the way Sutorichat does (Name: tagline,
then the details as prose, then your persona). Write the card's Description as
a one-line tagline and put everything else in Personality as prose with no
headings. The exact production prompt, including the mid-chat memory block, is
in PROMPT_TEMPLATE.md in this repo, with lotus_prompt.py to build it.
See the Lotus-1 card for training details, limitations and the license.
- Downloads last month
- 851
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
Model tree for yashsutorichat/Lotus-1-GGUF
Base model
Qwen/Qwen3.5-35B-A3B-Base