fix: correct API url

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
Ettore Di Giacinto
2026-02-05 22:49:18 +01:00
parent 4f4ad5069d
commit cbe4cd62ca
+1 -1
View File
@@ -164,7 +164,7 @@ func (a *GenSongAction) Run(ctx context.Context, sharedState *types.AgentSharedS
return types.ActionResult{}, err
}
url := a.apiURL + "/sound"
url := a.apiURL + "/v1/sound-generation"
req, err := http.NewRequestWithContext(ctx, http.MethodPost, url, bytes.NewReader(body))
if err != nil {
return types.ActionResult{}, err