23 lines
802 B
Bash
23 lines
802 B
Bash
# 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
|
|
# Required. Examples: qwen-plus, gpt-4o-mini, claude-3-5-sonnet-latest.
|
|
GOD_LLM_MODEL=
|
|
|
|
# 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
|