-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (38 loc) · 1.84 KB
/
.env.example
File metadata and controls
44 lines (38 loc) · 1.84 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
# =============================================================================
# Hive — environment variable template
# Copy to .env and fill in the keys you want to use.
# cp .env.example .env
# =============================================================================
# -----------------------------------------------------------------------------
# Cloud LLM API keys (leave blank to disable that provider)
# -----------------------------------------------------------------------------
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GOOGLE_API_KEY=
GROQ_API_KEY=
XAI_API_KEY=
MISTRAL_API_KEY=
COHERE_API_KEY=
DEEPSEEK_API_KEY=
# -----------------------------------------------------------------------------
# Hive API authentication (leave blank for open/local mode)
# -----------------------------------------------------------------------------
HIVE_API_KEY=
HIVE_CORS_ORIGINS=http://localhost:3000
HIVE_LOG_LEVEL=INFO
HIVE_LOG_FORMAT=text
# -----------------------------------------------------------------------------
# Ollama — local inference (no API key required)
# When running via Docker Compose this should point to the ollama service.
# For local dev outside Docker use http://localhost:11434
# -----------------------------------------------------------------------------
OLLAMA_HOST=http://ollama:11434
# -----------------------------------------------------------------------------
# Budget limits (USD) — Hive will refuse requests that would exceed these
# -----------------------------------------------------------------------------
HIVE_DAILY_LIMIT=10.00
HIVE_MONTHLY_LIMIT=100.00
# -----------------------------------------------------------------------------
# Web UI — override the API base URL if you expose the backend differently
# -----------------------------------------------------------------------------
NEXT_PUBLIC_API_URL=http://localhost:8000