-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.sample
More file actions
23 lines (17 loc) · 1.02 KB
/
env.sample
File metadata and controls
23 lines (17 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# https://platform.openai.com/settings/organization/general or https://platform.openai.com/api-keys
OPENAI_API_KEY="sk-xxx"
# Voice settings
# alloy, echo, fable, onyx, nova, and shimmer - https://platform.openai.com/docs/guides/text-to-speech/voice-options
SPEECH_VOICE="alloy"
# https://platform.openai.com/docs/models or https://platform.openai.com/docs/api-reference/models
CHAT_MODEL="gpt-5.5"
# https://developers.openai.com/api/docs/guides/image-generation
IMAGE_MODEL="gpt-image-2"
# gpt-image-2 popular sizes: 1024x1024 (square), 1536x1024 (landscape), 1024x1536 (portrait), 2048x2048 (2K), auto (default)
# gpt-image-1 1024x1024 (square), 1536x1024 (portrait), 1024x1536 (landscape), auto (default)
# dall-e-3 1024x1024 (square), 1024x1792 (portrait), 1792x1024 (landscape)
IMAGE_SIZE="1024x1024"
# low, medium, high, auto (default) for gpt-image-2/gpt-image-1 - hd or standard for dall-e-3
IMAGE_QUALITY="high"
# transparent (not supported for gpt-image-2), opaque, auto - not supported for dall-e-3
IMAGE_BACKGROUND="auto"