remove webhook_callback_url from the task metadata generation call (#2262)

This commit is contained in:
Shuchang Zheng
2025-05-01 02:12:59 +08:00
committed by GitHub
parent 3af35bc428
commit 852da7c90a

View File

@@ -148,9 +148,6 @@ export class Skyvern implements INodeType {
const generateBody: IDataObject = {
prompt: userPrompt,
};
if (webhookUrl) {
generateBody['webhook_callback_url'] = webhookUrl; // include for TaskV1 generation
}
const response = await makeRequest(credentials['baseUrl'] + '/api/v1/generate/task', {
method: 'POST',