summaryrefslogtreecommitdiff
path: root/docs/cli/configuration.md
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-05-20 12:35:44 -0700
committerGitHub <[email protected]>2025-05-20 12:35:44 -0700
commit8b20d16ba81ff0f07aa4d036d74d2e6060a36ad0 (patch)
treef7dff70bace103a235f1ea9f79ffb91ad6ec2673 /docs/cli/configuration.md
parent26add7b078d70a8253c4e4333f0c03aef7a35657 (diff)
coreTools doc tweak (#452)
Diffstat (limited to 'docs/cli/configuration.md')
-rw-r--r--docs/cli/configuration.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md
index e93c26ca..7f5b1fa2 100644
--- a/docs/cli/configuration.md
+++ b/docs/cli/configuration.md
@@ -38,8 +38,8 @@ When you create a `.gemini/settings.json` file for project-specific settings, or
- **`coreTools`** (array of strings, optional):
- **Description:** Allows you to specify a list of core tool names that should be made available to the model. This can be used to restrict or customize the set of built-in tools.
- - **Example:** `"coreTools": ["ReadFileTool", "GlobTool", "SearchText"]` (Note: Use the internal tool names like `ReadFileTool`, `GlobTool`, `SearchText` (for Grep), `WriteFileTool`, `EditTool` (for replace), `LSTool`, `ShellTool`, `WebFetchTool`, `ReadManyFilesTool`).
- - **Behavior:** If this setting is provided, only the listed tools will be available for the model to use. If omitted, all default core tools are available.
+ - **Example:** `"coreTools": ["ReadFileTool", "GlobTool", "SearchText"]`.
+ - **Behavior:** If this setting is provided, only the listed tools will be available for the model to use. If omitted, all default core tools are available. See [Built-in Tools](../server/tools-api.md#built-in-tools) for a list of core tools. You can also specify the alternative internal tool names used by the model, e.g. `read_file`, and you can get a full listing for that by simply asking the model "what tools do you have?".
- **`autoAccept`** (boolean, optional):
- **Description:** Controls whether the CLI automatically accepts and executes tool calls that are considered safe (e.g., read-only operations) without explicit user confirmation.