-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
72 lines (55 loc) · 2.34 KB
/
Copy path.env.example
File metadata and controls
72 lines (55 loc) · 2.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# ImageForge environment configuration
# Copy to .env and adjust as needed
# Model selection: sd-turbo | sdxl-turbo | sdxl
IMAGEFORGE_MODEL=sd-turbo
# ---------------------------------------------------------------------------
# AI assist (prompt expansion + in-app help). Multi-backend, prefer-fast-cheap:
# local Ollama -> Ollama Cloud / Gemini (free cloud) -> Claude (paid).
# Local-first by default: only "ollama" is enabled out of the box. To opt into
# a cloud tier, add it to ASSIST_BACKENDS (e.g. "ollama,gemini") AND set its
# key below — a listed backend with no key is simply skipped.
# ---------------------------------------------------------------------------
ASSIST_BACKENDS=ollama
# Allow the paid Claude backend to actually run (0 = never; 1 = opt in).
ASSIST_ALLOW_PAID=0
# Ollama (local) — leave OLLAMA_MODEL empty to auto-pick the right model by
# task complexity (smallest=fastest for simple, largest for complex), or pin one.
OLLAMA_URL=http://127.0.0.1:11434
OLLAMA_MODEL=gemma4:latest
# Ollama Cloud (ollama.com) — fast hosted models, no local GPU. Create a key at
# ollama.com settings. Leave the model empty to auto-pick, or pin (e.g. gpt-oss:120b).
# OLLAMA_CLOUD_API_KEY=
# OLLAMA_CLOUD_URL=https://ollama.com
# OLLAMA_CLOUD_MODEL=
# Gemini (free cloud tier) — get a key at https://aistudio.google.com/apikey
# GEMINI_API_KEY=
# GEMINI_MODEL=gemini-2.0-flash
# Claude / Anthropic (paid — also set ASSIST_ALLOW_PAID=1 to enable)
# ANTHROPIC_API_KEY=
# CLAUDE_MODEL=claude-haiku-4-5-20251001
# Storage paths (defaults relative to project root)
OUTPUT_DIR=outputs
CACHE_DIR=cache
MODELS_DIR=models
# Server
HOST=127.0.0.1
PORT=8765
# Quality / safety
MAX_RES=1024
# Flux models (disabled by default — requires extra VRAM)
ALLOW_FLUX=0
# FLUX.2-klein loader (disabled by default)
ALLOW_KLEIN=0
# Device: mps | cuda | cpu
DEVICE=mps
# Override the SD venv path (default: ~/.floor-voice-studio/venv-sd)
# IMAGEFORGE_VENV=/path/to/your/venv
# LoRA portrait preset path (optional; loaded at engine init when set)
# IMAGEFORGE_LORA_PORTRAIT=/path/to/portrait-lora.safetensors
# Hugging Face access token (required for gated models such as FLUX.1-dev)
# HF_TOKEN=hf_...
# Stock photo API keys (optional; used by image-search tools)
# PEXELS_API_KEY=
# PIXABAY_API_KEY=
# RunPod API key (optional; used for cloud offload)
# RUNPOD_API_KEY=