summaryrefslogtreecommitdiff
path: root/docs/server
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-05-17 17:28:44 -0700
committerGitHub <[email protected]>2025-05-17 17:28:44 -0700
commit76cf5e9fc1f324c21782e7c58c25a58b2515e76f (patch)
tree05a617fcf29090b9b069d900b5319dfd6b64abdb /docs/server
parent4de4822219bd6eb249d258e3b1a5613ec1c97243 (diff)
rename env vars GEMINI_CODE_{MODEL,SANDBOX,SANDBOX_IMAGE} (#411)
Diffstat (limited to 'docs/server')
-rw-r--r--docs/server/configuration.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/server/configuration.md b/docs/server/configuration.md
index fc6d33b1..adc03583 100644
--- a/docs/server/configuration.md
+++ b/docs/server/configuration.md
@@ -22,12 +22,12 @@ These are the main pieces of information the server `Config` object holds and us
- **`model` (string):**
- - **Source:** Command-line argument (`--model`), environment variable (`GEMINI_CODE_MODEL`), or the default value `gemini-2.5-pro-preview-05-06`.
+ - **Source:** Command-line argument (`--model`), environment variable (`GEMINI_MODEL`), or the default value `gemini-2.5-pro-preview-05-06`.
- **Purpose:** Specifies which Gemini model the server should use for generating responses.
- **`sandbox` (boolean | string):**
- - **Source:** Command-line argument (`--sandbox`), environment variable (`GEMINI_CODE_SANDBOX`), or `settings.json` (`sandbox` key).
+ - **Source:** Command-line argument (`--sandbox`), environment variable (`GEMINI_SANDBOX`), or `settings.json` (`sandbox` key).
- **Purpose:** Determines if and how tools (especially `execute_bash_command`) are sandboxed. This is crucial for security.
- `true`: Use a default sandboxing method.
- `false`: No sandboxing (less secure).
@@ -92,12 +92,12 @@ The CLI configuration logic, which precedes server initialization, includes load
2. `.env` in parent directories, up to the project root (containing `.git`) or home directory.
3. `~/.env` (in the user's home directory).
-This file is a common place to store the `GEMINI_API_KEY` and other environment-specific settings like `GEMINI_CODE_MODEL` or `DEBUG` flags.
+This file is a common place to store the `GEMINI_API_KEY` and other environment-specific settings like `GEMINI_MODEL` or `DEBUG` flags.
```
# Example .env file
GEMINI_API_KEY="YOUR_ACTUAL_API_KEY_HERE"
-GEMINI_CODE_MODEL="gemini-1.5-flash-latest"
+GEMINI_MODEL="gemini-1.5-flash-latest"
# DEBUG=true
```