Using with LM Studio
You need to have Python 3.8+ installed on your computer.
Steps
Install and launch LM Studio
Download the GGUF file
Download 4 bit version
Download 5 bit version
Download 8 bit version
If you would like to load the model from LM Studio directly, type salihfurkaan/voxpolska-v1-gguf and choose your preferred version.
Load the GGUF file
Skip this step if you have loaded the model from LM Studio directly. If not, follow the following steps:
Click on "My Models". You will see the models directory. Go to that path.
In "models" folder, create a new folder named "salihfurkaan" and go to this folder.
In "salihfurkaan", create a new folder named "VoxPolska-V1-GGUF"
In "VoxPolska-V1-GGUF", put your gguf file(s)
Start the local server
Click on "Developer" sidebar on LM Studio
Press CTRL + L and load the model.
Press CTRL + R to start the local server
Clone orpheus-tts-local repository and install the dependencies
1 git clone https://github.com/isaiahbjork/orpheus-tts-local.git
2 cd orpheus-tts-local
3 python3 -m venv venv
4 source venv/bin/activate # On Windows: venv\Scripts\activate
5 pip install -r requirements.txt
Put your Huggingface token to the files in orpheus-tts-local folder and save the file
Add the code below in the Python file and save the file.
1 import os
2 os . environ [ "HF_TOKEN" ] = "your huggingface token here"
You can get your token from here
Run the model
Run the bash command below:
python gguf_orpheus.py --text "Your Polish text here" --output output.wav
You can access to output.wav in orpheus-tts-local folder.
Available Flags
Using Llama.cpp
You need to have
CMake installed on your computer.
Install llama.cpp:
Use the command below to install and build llama.cpp
1 git clone https://github.com/ggerganov/llama.cpp
2 cd llama.cpp
3 cmake -B build
4 cmake --build build --config Release
Download the GGUF file
Start the server
Use the command below
./llama-server -m path/to/gguf/file --port 8080
Clone orpheus-tts-local repository and install the dependencies
1 git clone https://github.com/isaiahbjork/orpheus-tts-local.git
2 cd orpheus-tts-local
3 python3 -m venv venv
4 source venv/bin/activate # On Windows: venv\Scripts\activate
5 pip install -r requirements.txt
Put your Huggingface token to the files in orpheus-tts-local folder and save the file
Add the code below in the Python file and save the file.
1 import os
2 os . environ [ "HF_TOKEN" ] = "your huggingface token here"
You can get your token from here
Run the model
Run the bash command below:
python gguf_orpheus.py --text "Your Polish text here" --output output.wav
You can access to output.wav in orpheus-tts-local folder.
For questions, suggestions, and feedback, please open an issue on HuggingFace. You can also reach out via:
LinkedIn
Do not use this model for impersonation without consent, misinformation or deception (including fake news or fraudulent calls), or any illegal or harmful activity. By using this model, you agree to follow all applicable laws and ethical guidelines.
1 @misc{
2 title={salihfurkaan/VoxPolska-V1-GGUF},
3 author={Salih Furkan Erik},
4 year={2025},
5 url={https://huggingface.co/salihfurkaan/VoxPolska-V1-GGUF/}
6 }