diff --git a/src/lib/SunoApi.ts b/src/lib/SunoApi.ts index a7018da..62d1b76 100644 --- a/src/lib/SunoApi.ts +++ b/src/lib/SunoApi.ts @@ -368,6 +368,7 @@ class SunoApi { title: string = '', model?: string ): Promise { + await this.keepAlive(false); const response = await this.client.post( `${SunoApi.BASE_URL}/api/generate/v2/`, { @@ -376,6 +377,7 @@ class SunoApi { mv: model || DEFAULT_MODEL, prompt: prompt, tags: tags, + task: 'extend', title: title } );