We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e34c266 + 592f620 commit c25903bCopy full SHA for c25903b
1 file changed
app/client/platforms/openai.ts
@@ -352,7 +352,7 @@ export class ChatGPTApi implements LLMApi {
352
// make a fetch request
353
const requestTimeoutId = setTimeout(
354
() => controller.abort(),
355
- isDalle3 || isO1 ? REQUEST_TIMEOUT_MS * 2 : REQUEST_TIMEOUT_MS, // dalle3 using b64_json is slow.
+ isDalle3 || isO1 ? REQUEST_TIMEOUT_MS * 4 : REQUEST_TIMEOUT_MS, // dalle3 using b64_json is slow.
356
);
357
358
const res = await fetch(chatPath, chatPayload);
0 commit comments