Skip to content

Commit

Permalink
update endpoint defaults (#134)
Browse files Browse the repository at this point in the history
Co-authored-by: Luke Lombardi <[email protected]>
  • Loading branch information
luke-lombardi and Luke Lombardi authored Apr 16, 2024
1 parent 588be55 commit d106c46
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions sdk/src/beta9/abstractions/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ def __init__(
memory: int = 128,
gpu: str = "",
image: Image = Image(),
timeout: int = 3600,
retries: int = 0,
concurrency: int = 5,
timeout: int = 180,
concurrency: int = 1,
max_containers: int = 1,
keep_warm_seconds: int = 300,
max_pending_tasks: int = 100,
Expand All @@ -35,7 +34,7 @@ def __init__(
concurrency=concurrency,
max_containers=max_containers,
timeout=timeout,
retries=retries,
retries=0,
keep_warm_seconds=keep_warm_seconds,
max_pending_tasks=max_pending_tasks,
)
Expand Down

0 comments on commit d106c46

Please sign in to comment.