-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
44 lines (35 loc) · 1.03 KB
/
env.example
File metadata and controls
44 lines (35 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
38
39
40
41
42
43
44
# Pakati Environment Configuration
# Copy this file to .env and fill in your values
# =====================
# API Keys for Models
# =====================
# OpenAI API Key (for DALL-E models and GPT-4 Vision)
PAKATI_API_KEY_OPENAI=your_openai_api_key_here
# Anthropic API Key (for Claude models)
PAKATI_API_KEY_ANTHROPIC=your_anthropic_api_key_here
# HuggingFace API Key (for Stable Diffusion models)
PAKATI_API_KEY_HUGGINGFACE=your_huggingface_api_key_here
# Midjourney API Key
PAKATI_API_KEY_MIDJOURNEY=your_midjourney_api_key_here
# Replicate API Key (for various hosted models)
PAKATI_API_KEY_REPLICATE=your_replicate_api_key_here
# =====================
# Server Configuration
# =====================
PORT=8000
HOST=localhost
DEBUG=False
# =====================
# Model Configuration
# =====================
DEFAULT_MODEL=stable-diffusion-xl
DEFAULT_SEED=42
MAX_REGION_COUNT=10
IMAGE_SIZE=1024
# =====================
# Storage Configuration
# =====================
STORAGE_PATH=./storage
CACHE_ENABLED=True
CACHE_PATH=./cache
CACHE_MAX_SIZE=5GB