From 9091993a5ecc071147cb844f97aa625a878dfd00 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 9 Jan 2025 12:49:13 +0100 Subject: [PATCH] squash! examples : add README.md to tts example [no ci] Fix heading to be consistent with other examples, and add a quickstart section to README.md. --- examples/tts/README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/examples/tts/README.md b/examples/tts/README.md index 3b3ce33a8..13c81c04e 100644 --- a/examples/tts/README.md +++ b/examples/tts/README.md @@ -1,8 +1,17 @@ -## Text To Speach (TTS) example +# llama.cpp/example/tts This example demonstrates the Text To Speach feature. It uses a [model](https://www.outeai.com/blog/outetts-0.2-500m) from [outeai](https://www.outeai.com/). +## Quickstart +If you have built llama.cpp with `-DLLAMA_CURL=ON` you can simply run the +following command and the required models will be downloaded automatically: +```console +$ build/bin/llama-tts --tts-oute-default -p "Hello world" && aplay output.wav +``` +For details about the models and how to convert them to the required format +see the following sections. + ### Model conversion Checkout or download the model that contains the LLM model: ```console