Skip to content

Commit bd71293

Browse files
committed
Code cleanup: remove unused import and build artifact
- orchestrator.py: Remove unused asyncio import - frontend-server: Delete frontend-deploy.zip build artifact - .env.template: Update with gpt-image-1 configuration
1 parent 5f0c652 commit bd71293

2 files changed

Lines changed: 12 additions & 7 deletions

File tree

content-gen/.env.template

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,21 @@ AZURE_CLIENT_ID=
1212
# Your Azure OpenAI endpoint (e.g., https://your-resource.openai.azure.com/)
1313
AZURE_OPENAI_ENDPOINT=https://your-openai.openai.azure.com/
1414

15-
# Or use resource name instead of full endpoint
16-
# AZURE_OPENAI_RESOURCE=your-openai-resource
17-
1815
# Model deployments
1916
AZURE_OPENAI_GPT_MODEL=gpt-5.1
20-
AZURE_OPENAI_DALLE_MODEL=dall-e-3
2117

22-
# Optional: Separate endpoint for DALL-E if deployed in a different resource
23-
AZURE_OPENAI_DALLE_ENDPOINT=
18+
# Image Generation Model Configuration
19+
# Supported models: dall-e-3 or gpt-image-1
20+
AZURE_OPENAI_IMAGE_MODEL=gpt-image-1
21+
22+
# For gpt-image-1 (if using a different endpoint than DALL-E)
23+
AZURE_OPENAI_GPT_IMAGE_ENDPOINT=https://your-openai.openai.azure.com
24+
25+
# Image generation settings
26+
# For dall-e-3: sizes are 1024x1024, 1024x1792, 1792x1024; quality is standard or hd
27+
# For gpt-image-1: sizes are 1024x1024, 1536x1024, 1024x1536, auto; quality is low, medium, high, auto
28+
AZURE_OPENAI_IMAGE_SIZE=1024x1024
29+
AZURE_OPENAI_IMAGE_QUALITY=medium
2430

2531
# API versions
2632
AZURE_OPENAI_API_VERSION=2024-06-01

content-gen/src/backend/orchestrator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
Agents can hand off to each other dynamically based on context.
1616
"""
1717

18-
import asyncio
1918
import json
2019
import logging
2120
import re

0 commit comments

Comments
 (0)