Automatic Speech Recognition
llama-cpp-python
GGUF
English
speech-to-speech
faster-whisper
qwen
windows
local-ai
terminal
sapi
Instructions to use maytman12/s2s-complete-setup with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use maytman12/s2s-complete-setup with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="maytman12/s2s-complete-setup", filename="{{GGUF_FILE}}", )output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
File size: 83 Bytes
de2ad9c | 1 2 3 4 5 | @echo off
cd /d "%~dp0"
call ".venv\Scripts\activate.bat"
python shell_s2s.py
pause |