Skip to content

Commit

Permalink
fix: test and HxW
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmerrell committed Aug 8, 2023
1 parent 859082f commit 01255df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI-test_worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id: deploy
uses: fjogeleit/http-request-action@v1
with:
url: "https://api.runpod.ai/v2/${{ secrets.RUNPOD_ENDPOINT }}/run"
url: "https://api.runpod.ai/v2/${{ vars.RUNNER_24GB }}/run"
method: "POST"
customHeaders: '{"Content-Type": "application/json"}'
bearerToken: ${{ secrets.RUNPOD_API_KEY }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Shutdown Worker
uses: fjogeleit/http-request-action@v1
with:
url: "https://api.runpod.ai/v2/${{ secrets.RUNPOD_ENDPOINT }}/cancel/${{ needs.initialize_worker.outputs.id }}"
url: "https://api.runpod.ai/v2/${{ vars.RUNNER_24GB }}/cancel/${{ needs.initialize_worker.outputs.id }}"
method: "POST"
customHeaders: '{"Content-Type": "application/json"}'
bearerToken: ${{ secrets.RUNPOD_API_KEY }}
4 changes: 2 additions & 2 deletions src/rp_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
'height': {
'type': int,
'required': False,
'default': 512
'default': 1024
},
'width': {
'type': int,
'required': False,
'default': 512
'default': 1024
},
'num_inference_steps': {
'type': int,
Expand Down

0 comments on commit 01255df

Please sign in to comment.