DeltaZN commited on
Commit
cb0555c
·
1 Parent(s): b1898c7

fix: update scale down window

Browse files
deployments/modal_nemotron_nano.py CHANGED
@@ -64,7 +64,7 @@ app = modal.App(APP_NAME)
64
  "/root/.cache/huggingface": hf_cache_vol,
65
  "/root/.cache/vllm": vllm_cache_vol,
66
  },
67
- scaledown_window=2 * MINUTES,
68
  timeout=30 * MINUTES,
69
  )
70
  @modal.concurrent(max_inputs=TARGET_INPUTS)
 
64
  "/root/.cache/huggingface": hf_cache_vol,
65
  "/root/.cache/vllm": vllm_cache_vol,
66
  },
67
+ scaledown_window=5 * MINUTES,
68
  timeout=30 * MINUTES,
69
  )
70
  @modal.concurrent(max_inputs=TARGET_INPUTS)
deployments/modal_qwen36_27b_h100.py CHANGED
@@ -56,7 +56,7 @@ app = modal.App(APP_NAME)
56
  "/root/.cache/vllm": vllm_cache_vol,
57
  },
58
  max_containers=1,
59
- scaledown_window=2 * MINUTES,
60
  timeout=30 * MINUTES,
61
  )
62
  @modal.concurrent(max_inputs=TARGET_INPUTS, target_inputs=TARGET_INPUTS)
 
56
  "/root/.cache/vllm": vllm_cache_vol,
57
  },
58
  max_containers=1,
59
+ scaledown_window=5 * MINUTES,
60
  timeout=30 * MINUTES,
61
  )
62
  @modal.concurrent(max_inputs=TARGET_INPUTS, target_inputs=TARGET_INPUTS)
deployments/modal_qwen36_27b_h100_llamacpp.py CHANGED
@@ -48,7 +48,7 @@ app = modal.App(APP_NAME)
48
  "/root/.cache/llama.cpp": llama_cache_vol,
49
  },
50
  max_containers=1,
51
- scaledown_window=2 * MINUTES,
52
  timeout=30 * MINUTES,
53
  )
54
  @modal.concurrent(max_inputs=TARGET_INPUTS, target_inputs=TARGET_INPUTS)
 
48
  "/root/.cache/llama.cpp": llama_cache_vol,
49
  },
50
  max_containers=1,
51
+ scaledown_window=5 * MINUTES,
52
  timeout=30 * MINUTES,
53
  )
54
  @modal.concurrent(max_inputs=TARGET_INPUTS, target_inputs=TARGET_INPUTS)