Skip to content

Commit 69869bc

Browse files
updated workflows for removal of dall-e
1 parent 231f14e commit 69869bc

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/deploy-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ on:
109109
options:
110110
- 'gpt-image-1'
111111
- 'gpt-image-1.5'
112-
- 'dall-e-3'
113112
- 'none'
114113

115114
schedule:
@@ -311,7 +310,7 @@ jobs:
311310
312311
# Validate and output image_model_choice
313312
IMAGE_MODEL="${INPUT_IMAGE_MODEL_CHOICE:-gpt-image-1}"
314-
ALLOWED_MODELS=("gpt-image-1" "gpt-image-1.5" "dall-e-3" "none")
313+
ALLOWED_MODELS=("gpt-image-1" "gpt-image-1.5" "none")
315314
if [[ ! " ${ALLOWED_MODELS[@]} " =~ " ${IMAGE_MODEL} " ]]; then
316315
echo "❌ ERROR: image_model_choice '$IMAGE_MODEL' is invalid. Allowed: ${ALLOWED_MODELS[*]}"
317316
exit 1

.github/workflows/deploy-orchestrator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ on:
6262
required: true
6363
type: string
6464
image_model_choice:
65-
description: 'Image model to deploy (gpt-image-1, gpt-image-1.5, dall-e-3, none)'
65+
description: 'Image model to deploy (gpt-image-1, gpt-image-1.5, none)'
6666
required: false
6767
default: 'gpt-image-1'
6868
type: string

.github/workflows/job-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ on:
6767
default: ''
6868
type: string
6969
image_model_choice:
70-
description: 'Image model to deploy (gpt-image-1, gpt-image-1.5, dall-e-3, none)'
70+
description: 'Image model to deploy (gpt-image-1, gpt-image-1.5, none)'
7171
required: false
7272
default: 'gpt-image-1'
7373
type: string

0 commit comments

Comments
 (0)