litellm/.github/workflows/redeploy_proxy.py
2024-05-25 17:30:37 -07:00

11 lines
195 B
Python

"""
redeploy_proxy.py
"""
import os
import requests
# send a get request to this endpoint
deploy_hook1 = os.getenv("LOAD_TEST_REDEPLOY_URL1")
response = requests.get(deploy_hook1, timeout=20)