mirror of
https://github.com/mudler/LocalAI.git
synced 2026-03-01 21:30:11 -05:00
* feat(musicgen): add ace-step and UI interface Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Correctly handle model dir Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Drop auto-download Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Fixups Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Add to models, fixup UIs icons Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * fixups Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Update docs Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * l4t13 is incompatbile Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * avoid pinning version for cuda12 Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Drop l4t12 Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
41 lines
1.7 KiB
Go
41 lines
1.7 KiB
Go
package schema
|
|
|
|
type ElevenLabsTTSRequest struct {
|
|
Text string `json:"text" yaml:"text"`
|
|
ModelID string `json:"model_id" yaml:"model_id"`
|
|
LanguageCode string `json:"language_code" yaml:"language_code"`
|
|
}
|
|
|
|
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"`
|
|
// Advanced mode
|
|
Think *bool `json:"think,omitempty" yaml:"think,omitempty"`
|
|
Caption string `json:"caption,omitempty" yaml:"caption,omitempty"`
|
|
Lyrics string `json:"lyrics,omitempty" yaml:"lyrics,omitempty"`
|
|
BPM *int `json:"bpm,omitempty" yaml:"bpm,omitempty"`
|
|
Keyscale string `json:"keyscale,omitempty" yaml:"keyscale,omitempty"`
|
|
Language string `json:"language,omitempty" yaml:"language,omitempty"`
|
|
VocalLanguage string `json:"vocal_language,omitempty" yaml:"vocal_language,omitempty"`
|
|
Timesignature string `json:"timesignature,omitempty" yaml:"timesignature,omitempty"`
|
|
// Simple mode: use text as description; optional instrumental / vocal_language
|
|
Instrumental *bool `json:"instrumental,omitempty" yaml:"instrumental,omitempty"`
|
|
}
|
|
|
|
func (elttsr *ElevenLabsTTSRequest) ModelName(s *string) string {
|
|
if s != nil {
|
|
elttsr.ModelID = *s
|
|
}
|
|
return elttsr.ModelID
|
|
}
|
|
|
|
func (elsgr *ElevenLabsSoundGenerationRequest) ModelName(s *string) string {
|
|
if s != nil {
|
|
elsgr.ModelID = *s
|
|
}
|
|
return elsgr.ModelID
|
|
}
|