mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-21 11:04:59 +00:00

This allows elevenlabs Clients to work automatically with LocalAI by supporting the elevenlabs API. The elevenlabs server endpoint is implemented such as it is wired to the TTS endpoints. Fixes: https://github.com/mudler/LocalAI/issues/1809
6 lines
151 B
Go
6 lines
151 B
Go
package schema
|
|
|
|
type ElevenLabsTTSRequest struct {
|
|
Text string `json:"text" yaml:"text"`
|
|
ModelID string `json:"model_id" yaml:"model_id"`
|
|
}
|