nit: realign endpoint tables on the widened voice routes
This commit is contained in:
+15
-15
@@ -628,24 +628,24 @@ Optional:
|
|||||||
Endpoints :
|
Endpoints :
|
||||||
|
|
||||||
```
|
```
|
||||||
POST /v1/audio/speech OAI text-to-speech; response_format "pcm"
|
POST /v1/audio/speech OAI text-to-speech; response_format "pcm"
|
||||||
streams s16le 24 kHz mono chunked as it is
|
streams s16le 24 kHz mono chunked as it is
|
||||||
generated, "wav" returns a one-shot RIFF file.
|
generated, "wav" returns a one-shot RIFF file.
|
||||||
Optional sampling overrides ride in the same
|
Optional sampling overrides ride in the same
|
||||||
body: seed, max_new_tokens, temperature,
|
body: seed, max_new_tokens, temperature,
|
||||||
top_k, top_p, repetition_penalty. Unset
|
top_k, top_p, repetition_penalty. Unset
|
||||||
fields keep the engine defaults, temperature
|
fields keep the engine defaults, temperature
|
||||||
0 selects greedy decoding, the subtalker
|
0 selects greedy decoding, the subtalker
|
||||||
mirrors the talker knobs
|
mirrors the talker knobs
|
||||||
GET /v1/models single loaded model, using --alias when set
|
GET /v1/models single loaded model, using --alias when set
|
||||||
GET /v1/audio/voices model speakers plus registered cloned voices
|
GET /v1/audio/voices model speakers plus registered cloned voices
|
||||||
POST /v1/audio/voices register a cloned voice: {name, ref_text,
|
POST /v1/audio/voices register a cloned voice: {name, ref_text,
|
||||||
wav_b64} extracts server side through
|
wav_b64} extracts server side through
|
||||||
qt_extract_voice_ref, {name, ref_text,
|
qt_extract_voice_ref, {name, ref_text,
|
||||||
spk_b64, rvq_b64} takes the pre-extracted
|
spk_b64, rvq_b64} takes the pre-extracted
|
||||||
latents verbatim
|
latents verbatim
|
||||||
DELETE /v1/audio/voices/{name} drop a registered voice
|
DELETE /v1/audio/voices/{name} drop a registered voice
|
||||||
GET /health liveness probe
|
GET /health liveness probe
|
||||||
```
|
```
|
||||||
|
|
||||||
A registered voice wins over a model speaker of the same name and
|
A registered voice wins over a model speaker of the same name and
|
||||||
|
|||||||
+6
-6
@@ -8,15 +8,15 @@
|
|||||||
// are identical across projects ; only the adapter differs.
|
// are identical across projects ; only the adapter differs.
|
||||||
//
|
//
|
||||||
// Endpoints:
|
// Endpoints:
|
||||||
// POST /v1/audio/speech OAI text-to-speech
|
// POST /v1/audio/speech OAI text-to-speech
|
||||||
// GET /v1/models single loaded model
|
// GET /v1/models single loaded model
|
||||||
// GET /v1/audio/voices model speakers plus registered cloned voices
|
// GET /v1/audio/voices model speakers plus registered cloned voices
|
||||||
// POST /v1/audio/voices register a cloned voice: {name, ref_text,
|
// POST /v1/audio/voices register a cloned voice: {name, ref_text,
|
||||||
// wav_b64} extracts server side, {name,
|
// wav_b64} extracts server side, {name,
|
||||||
// ref_text, spk_b64, rvq_b64} takes
|
// ref_text, spk_b64, rvq_b64} takes
|
||||||
// pre-extracted latents verbatim
|
// pre-extracted latents verbatim
|
||||||
// DELETE /v1/audio/voices/{name} drop a registered voice
|
// DELETE /v1/audio/voices/{name} drop a registered voice
|
||||||
// GET /health liveness probe
|
// GET /health liveness probe
|
||||||
//
|
//
|
||||||
// Audio out: response_format "pcm" streams s16le 24 kHz mono chunked as it
|
// Audio out: response_format "pcm" streams s16le 24 kHz mono chunked as it
|
||||||
// is generated (real time), "wav" returns a one-shot RIFF file. pcm is the
|
// is generated (real time), "wav" returns a one-shot RIFF file. pcm is the
|
||||||
|
|||||||
Reference in New Issue
Block a user