From c70f85992cd96b0b36269f11b24f5291b64814aa Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Tue, 11 Jun 2024 09:45:12 -0400 Subject: [PATCH] ci: reduce machine type to more available options Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> --- tools/machines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/machines.py b/tools/machines.py index ced8be6e..244e3899 100644 --- a/tools/machines.py +++ b/tools/machines.py @@ -40,7 +40,7 @@ class Machine: return cls(id=machines['items'][0]['id'], inner=client) response = client.post('/machines', json=dict( name=f'openllm-ci-{datetime.datetime.now().timestamp()}', - machineType='A100-80G', templateId=template_id, + machineType='A4000', templateId=template_id, networkId=os.getenv("PAPERSPACE_NETWORK_ID"), diskSize=500, region='ny2', publicIpType="dynamic", startOnCreate=True, ))