fix: Remove explicit timeout from OpenAI image API Call (#6227)

This commit is contained in:
Michael Genson
2025-09-23 12:39:23 -05:00
committed by GitHub
parent 249c9e8f23
commit 96acc6fc4b

View File

@@ -169,7 +169,7 @@ export class RecipeAPI extends BaseCRUDAPI<CreateRecipe, Recipe, Recipe> {
apiRoute = `${apiRoute}?translateLanguage=${translateLanguage}`;
}
return await this.requests.post<string>(apiRoute, formData, { timeout: 120000 });
return await this.requests.post<string>(apiRoute, formData);
}
async parseIngredients(parser: Parser, ingredients: Array<string>) {