File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -234,8 +234,8 @@ def _validate_async_params(
234234 self , initial_delay_sec : float , delay_sec : float , max_retries : int
235235 ) -> None :
236236 min_delay = 1
237- min_initial_delay = 2
238- min_retries = 2
237+ min_initial_delay = 1
238+ min_retries = 1
239239 if delay_sec < min_delay :
240240 raise MindeeClientError (
241241 f"Cannot set auto-parsing delay to less than { min_delay } seconds."
@@ -256,8 +256,8 @@ def enqueue_and_parse(
256256 page_options : Optional [PageOptions ] = None ,
257257 cropper : bool = False ,
258258 endpoint : Optional [Endpoint ] = None ,
259- initial_delay_sec : float = 4 ,
260- delay_sec : float = 2 ,
259+ initial_delay_sec : float = 2 ,
260+ delay_sec : float = 1.5 ,
261261 max_retries : int = 30 ,
262262 full_text : bool = False ,
263263 ) -> AsyncPredictResponse :
You can’t perform that action at this time.
0 commit comments