Instructions to use lex-au/Orpheus-3b-Kaya-Q6_K.gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use lex-au/Orpheus-3b-Kaya-Q6_K.gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="lex-au/Orpheus-3b-Kaya-Q6_K.gguf", filename="Orpheus-3b-Kaya-Q6_K.gguf", )
llm.create_chat_completion( messages = "\"The answer to the universe is 42\"" )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use lex-au/Orpheus-3b-Kaya-Q6_K.gguf with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K # Run inference directly in the terminal: llama-cli -hf lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K # Run inference directly in the terminal: llama-cli -hf lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
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 lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K # Run inference directly in the terminal: ./llama-cli -hf lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
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 lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
Use Docker
docker model run hf.co/lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
- LM Studio
- Jan
- Ollama
How to use lex-au/Orpheus-3b-Kaya-Q6_K.gguf with Ollama:
ollama run hf.co/lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
- Unsloth Studio
How to use lex-au/Orpheus-3b-Kaya-Q6_K.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 lex-au/Orpheus-3b-Kaya-Q6_K.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 lex-au/Orpheus-3b-Kaya-Q6_K.gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for lex-au/Orpheus-3b-Kaya-Q6_K.gguf to start chatting
- Pi
How to use lex-au/Orpheus-3b-Kaya-Q6_K.gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
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": "lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use lex-au/Orpheus-3b-Kaya-Q6_K.gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
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 lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use lex-au/Orpheus-3b-Kaya-Q6_K.gguf with Docker Model Runner:
docker model run hf.co/lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
- Lemonade
How to use lex-au/Orpheus-3b-Kaya-Q6_K.gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull lex-au/Orpheus-3b-Kaya-Q6_K.gguf:Q6_K
Run and chat with the model
lemonade run user.Orpheus-3b-Kaya-Q6_K.gguf-Q6_K
List all available models
lemonade list
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,22 +1,82 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
tags:
|
| 4 |
-
- text-
|
| 5 |
-
-
|
| 6 |
-
-
|
| 7 |
-
-
|
|
|
|
| 8 |
- gguf
|
|
|
|
| 9 |
license: apache-2.0
|
| 10 |
-
|
| 11 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
-
|
| 17 |
-
-
|
| 18 |
-
-
|
|
|
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language: en
|
| 3 |
tags:
|
| 4 |
+
- text-to-speech
|
| 5 |
+
- tts
|
| 6 |
+
- audio
|
| 7 |
+
- speech-synthesis
|
| 8 |
+
- orpheus
|
| 9 |
- gguf
|
| 10 |
+
- unsloth
|
| 11 |
license: apache-2.0
|
| 12 |
+
datasets:
|
| 13 |
+
- lex-au/Orpheus-3b-Kaya
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Orpheus-3b-Kaya-Q6_K
|
| 17 |
+
|
| 18 |
+
This is a **fine-tuned version** of the pretrained model [canopylabs/orpheus-3b-0.1-pretrained](https://huggingface.co/canopylabs/orpheus-3b-0.1-pretrained), trained on a custom voice dataset and quantised to GGUF Q6_K format for fast, efficient inference.
|
| 19 |
+
|
| 20 |
---
|
| 21 |
|
| 22 |
+
## ๐ง Model Details
|
| 23 |
+
|
| 24 |
+
- **Model Type**: Text-to-Speech (TTS)
|
| 25 |
+
- **Architecture**: Token-to-audio language model
|
| 26 |
+
- **Parameters**: ~3 billion
|
| 27 |
+
- **Quantisation**: 8-bit GGUF (Q6_K)
|
| 28 |
+
- **Sampling Rate**: 24kHz mono
|
| 29 |
+
- **Training Epochs**: 1
|
| 30 |
+
- **Training Dataset**: [lex-au/Orpheus-3b-Kaya](https://huggingface.co/datasets/lex-au/Orpheus-3b-Kaya)
|
| 31 |
+
- **Languages**: English
|
| 32 |
+
|
| 33 |
+
---
|
| 34 |
+
|
| 35 |
+
## ๐ Quick Usage
|
| 36 |
+
|
| 37 |
+
This model is designed for use with [Orpheus-FastAPI](https://github.com/Lex-au/Orpheus-FastAPI), an OpenAI-compatible inference server for text-to-speech generation.
|
| 38 |
+
|
| 39 |
+
### Compatible Inference Servers
|
| 40 |
+
You can load this model into:
|
| 41 |
|
| 42 |
+
- [GPUStack](https://github.com/gpustack/gpustack)
|
| 43 |
+
- [LM Studio](https://lmstudio.ai/)
|
| 44 |
+
- [llama.cpp](https://github.com/ggerganov/llama.cpp)
|
| 45 |
+
- Any other GGUF-compatible OpenAI-style server
|
| 46 |
|
| 47 |
+
## ๐ License
|
| 48 |
+
|
| 49 |
+
Apache License 2.0 โ free for research and commercial use.
|
| 50 |
+
|
| 51 |
+
---
|
| 52 |
+
|
| 53 |
+
## ๐ Credits
|
| 54 |
+
|
| 55 |
+
- Original model by: [Canopy Labs](https://huggingface.co/canopylabs/orpheus-3b-0.1-pt)
|
| 56 |
+
- Fine-tuned, quantised, and API-wrapped by: [Lex-au](https://huggingface.co/lex-au) via [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
| 57 |
|
| 58 |
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
---
|
| 62 |
+
|
| 63 |
+
## ๐ Citation
|
| 64 |
+
|
| 65 |
+
```
|
| 66 |
+
@misc{orpheus-tts-2025,
|
| 67 |
+
author = {Canopy Labs},
|
| 68 |
+
title = {Orpheus-3b-0.1-pt: Pretrained Text-to-Speech Model},
|
| 69 |
+
year = {2025},
|
| 70 |
+
publisher = {HuggingFace},
|
| 71 |
+
howpublished = {\url{https://huggingface.co/canopylabs/orpheus-3b-0.1-pt}}
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
@misc{orpheus-kaya-2025,
|
| 75 |
+
author = {Lex-au},
|
| 76 |
+
title = {Orpheus-3b-Kaya-Q6_K: Fine-Tuned TTS Model (Quantised)},
|
| 77 |
+
note = {Fine-tuned from canopylabs/orpheus-3b-0.1-pt},
|
| 78 |
+
year = {2025},
|
| 79 |
+
publisher = {HuggingFace},
|
| 80 |
+
howpublished = {\url{https://huggingface.co/lex-au/Orpheus-3b-Kaya-Q6_K}}
|
| 81 |
+
}
|
| 82 |
+
```
|