2024-03-14 22:08:34 +00:00
|
|
|
package schema
|
|
|
|
|
|
|
|
type ElevenLabsTTSRequest struct {
|
|
|
|
Text string `json:"text" yaml:"text"`
|
|
|
|
ModelID string `json:"model_id" yaml:"model_id"`
|
|
|
|
}
|
2024-08-24 00:20:28 +00:00
|
|
|
|
|
|
|
type ElevenLabsSoundGenerationRequest struct {
|
|
|
|
Text string `json:"text" yaml:"text"`
|
|
|
|
ModelID string `json:"model_id" yaml:"model_id"`
|
|
|
|
Duration *float32 `json:"duration_seconds,omitempty" yaml:"duration_seconds,omitempty"`
|
|
|
|
Temperature *float32 `json:"prompt_influence,omitempty" yaml:"prompt_influence,omitempty"`
|
|
|
|
DoSample *bool `json:"do_sample,omitempty" yaml:"do_sample,omitempty"`
|
|
|
|
}
|