From d85f09ac5129227932d3d6cf76b6dac36a325655 Mon Sep 17 00:00:00 2001 From: Cindy Xing Date: Tue, 3 Jun 2025 21:33:02 -0700 Subject: [PATCH] Update configuration.md (#722) --- docs/cli/configuration.md | 2 +- packages/core/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md index b5ef0631..da5a6bfd 100644 --- a/docs/cli/configuration.md +++ b/docs/cli/configuration.md @@ -45,7 +45,7 @@ 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"]`. - - **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?". + - **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](../core/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. diff --git a/packages/core/README.md b/packages/core/README.md index 3345cebd..5becc4e0 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -2,5 +2,5 @@ Nested package template. Either fill this out with "backend" functionality or cr To use this package from another dependent package in this monorepo: -1. Add `"@gemini-code/server"` to the dependent package's `package.json` -1. Import a dependency by calling `import { } from "@gemini-code/server"` +1. Add `"@gemini-code/core"` to the dependent package's `package.json` +1. Import a dependency by calling `import { } from "@gemini-code/core"`