-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (23 loc) · 1.02 KB
/
.env.example
File metadata and controls
34 lines (23 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
24
25
26
27
28
29
30
31
32
33
34
# Heidi CLI Environment Variables
# Backend server URL (required for UI to connect to backend)
# Either HEIDI_SERVER_BASE or VITE_HEIDI_SERVER_BASE works
HEIDI_SERVER_BASE=http://127.0.0.1:7777
# Alternative name (Vite-compatible)
# VITE_HEIDI_SERVER_BASE=http://127.0.0.1:7777
# Optional: API key for authentication
# HEIDI_API_KEY=your-secret-key
# Optional: Custom CORS origins (comma-separated)
# HEIDI_CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3002
# ===========================================
# Landing Page (heidi-cli-landing-page)
# ===========================================
# Gemini API key for the landing page AI features
# Get one at: https://aistudio.google.com/app/apikey
# GEMINI_API_KEY=your-gemini-api-key
# ===========================================
# Local Model Server
# ===========================================
# Path to local HF model (e.g., /media/heidi/New Volume/hf-hub/models--TinyLlama--TinyLlama-1.1B-Chat-v1.0)
LOCAL_MODEL_PATH=
# Server port for OpenAI-compatible API
LOCAL_MODEL_PORT=8000