-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy path.env.example
More file actions
26 lines (23 loc) · 1.09 KB
/
Copy path.env.example
File metadata and controls
26 lines (23 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# OpenAI official Images API (or any OpenAI-compatible relay you trust)
OPENAI_BASE_URL=https://api.openai.com
OPENAI_API_KEY=sk-your-key-here
# Model name (default: gpt-image-2)
GPT_IMAGE_MODEL_NAME=gpt-image-2
# Image quality: low / medium / high / auto
GPT_IMAGE_QUALITY=high
# -- Vision provider (OPTIONAL) ----------------------------------------------
# Only required when the caller agent is text-only and cannot inspect rendered
# .pptx template screenshots itself. Multimodal agents can write
# template_profile.json and pass it with --template-profile instead.
# Pick a provider you already trust -- there is no recommended endpoint default.
#
# Examples (replace with your own endpoint and key; never paste random URLs):
# VISION_BASE_URL=https://your-openai-compatible-relay.example.com/v1
# VISION_API_KEY=sk-your-vision-key-here
# VISION_MODEL_NAME=gemini-3.1-pro-preview # or any vision-capable model
#
# Leave these unset when a multimodal agent will analyze template screenshots
# itself, or when you do not use template-clone mode.
VISION_BASE_URL=
VISION_API_KEY=
VISION_MODEL_NAME=