File tree 1 file changed +6
-2
lines changed
packages/frontend/core/src/blocksuite/ai/provider
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,8 @@ export function setupAIProvider(
228
228
client,
229
229
content : options . input ,
230
230
promptName : 'workflow:brainstorm' ,
231
+ // 3 minutes
232
+ timeout : 180000 ,
231
233
workflow : true ,
232
234
} ) ;
233
235
} ) ;
@@ -331,6 +333,8 @@ Could you make a new website based on these notes and send back just the html fi
331
333
client,
332
334
content : options . input ,
333
335
promptName : 'workflow:presentation' ,
336
+ // 3 minutes
337
+ timeout : 180000 ,
334
338
workflow : true ,
335
339
postfix,
336
340
} ) ;
@@ -358,7 +362,7 @@ Could you make a new website based on these notes and send back just the html fi
358
362
...options ,
359
363
client,
360
364
content : options . input ,
361
- timeout : 120000 ,
365
+ timeout : 180000 ,
362
366
promptName : promptName as PromptKey ,
363
367
workflow : ! ! promptName ?. startsWith ( 'workflow:' ) ,
364
368
} ) ;
@@ -373,7 +377,7 @@ Could you make a new website based on these notes and send back just the html fi
373
377
...options ,
374
378
client,
375
379
content : options . input ,
376
- timeout : 120000 ,
380
+ timeout : 180000 ,
377
381
promptName,
378
382
} ) ;
379
383
} ) ;
You can’t perform that action at this time.
0 commit comments