From cbe4cd62ca145ea2938448b2b1fed11731d0f776 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 5 Feb 2026 22:49:18 +0100 Subject: [PATCH] fix: correct API url Signed-off-by: Ettore Di Giacinto --- services/actions/gensong.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/actions/gensong.go b/services/actions/gensong.go index 65df38b..8e945b2 100644 --- a/services/actions/gensong.go +++ b/services/actions/gensong.go @@ -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