-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 1.35 KB
/
.env.example
File metadata and controls
21 lines (16 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ─────────────────────────────────────────────────────────────────────────────
# Children's Story Multi-Agent — Backend Environment Configuration
# ─────────────────────────────────────────────────────────────────────────────
# Copy this file to .env and fill in your values before running the backend.
# Never commit .env to source control.
# Azure AI Foundry project endpoint
# Found in: Azure AI Foundry → your project → Overview → "Azure AI Foundry SDK" section
# Format: https://<resource-name>.services.ai.azure.com/api/projects/<project-name>
FOUNDRY_PROJECT_ENDPOINT=https://[FOUNDRY_PROJECT_ENDPOINT]
# Name of the chat/text generation model deployment (e.g., gpt-4o, gpt-4o-mini)
FOUNDRY_MODEL_DEPLOYMENT_NAME=gpt-5.4
# Name of the image generation model deployment (e.g., dall-e-3, gpt-image-1)
# Used by the ArtDirectorExecutor to generate one illustration per story page.
FOUNDRY_IMAGE_MODEL_DEPLOYMENT_NAME=gpt-image-1.5
# CORS — URL of the React dev server. Change if you run frontend on a different port.
CORS_ORIGIN=http://localhost:5173