-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
37 lines (32 loc) · 1.03 KB
/
.env.example
File metadata and controls
37 lines (32 loc) · 1.03 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
27
28
29
30
31
32
33
34
35
36
37
# MindBrush Environment Variables
# ================================
# Copy this file to .env and fill in your actual API keys.
# NEVER commit the .env file with real keys to version control!
# =========================
# LLM API (OpenAI Compatible)
# =========================
OPENAI_API_KEY=sk-your-openai-api-key
OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_MODEL_NAME=gpt-4
# =========================
# Image Generation API
# =========================
IMAGE_API_KEY=sk-your-image-api-key
IMAGE_BASE_URL=https://api.openai.com/v1
IMAGE_GEN_MODEL_NAME=dall-e-3
IMAGE_EDIT_MODEL_NAME=dall-e-2
# =========================
# FLUX API (Optional)
# =========================
FLUX_API_KEY=your-flux-api-key
# =========================
# Search APIs
# =========================
SERPER_API_KEY=your-serper-api-key
GOOGLE_API_KEY=your-google-api-key
GOOGLE_SEARCH_ENGINE_ID=your-search-engine-id
# =========================
# Proxy Settings (Optional)
# =========================
HTTP_PROXY=http://127.0.0.1:7890
HTTPS_PROXY=http://127.0.0.1:7890