-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (17 loc) · 737 Bytes
/
.env.example
File metadata and controls
21 lines (17 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# GOD - Govern, Observe, Direct
# Copy this file to .env, or run `./scripts/god.sh start` and follow the prompts.
# ----- Required model settings ---------------------------------------------
# OpenAI-compatible API. Any provider that speaks /v1/chat/completions works.
GOD_LLM_API_KEY=
GOD_LLM_API_BASE=https://api.openai.com/v1
GOD_LLM_MODEL=gpt-5.4
# Embedding model. Leave the base/key blank to reuse GOD_LLM_API_BASE / GOD_LLM_API_KEY.
GOD_EMBEDDING_API_KEY=
GOD_EMBEDDING_API_BASE=
GOD_EMBEDDING_MODEL=text-embedding-3-large
# Local bind ports. Override only on port conflicts.
GOD_BACKEND_HOST=127.0.0.1
GOD_BACKEND_PORT=8001
GOD_FRONTEND_PORT=5174
# Set to 1 to skip dependency checks/install when starting.
GOD_SKIP_SETUP=0