mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
fix(docs): Release version for read many files removal (#12949)
This commit is contained in:
@@ -83,7 +83,7 @@ Gemini CLI's built-in tools can be broadly categorized as follows:
|
|||||||
- **[Web Search Tool](./web-search.md) (`google_web_search`):** For searching
|
- **[Web Search Tool](./web-search.md) (`google_web_search`):** For searching
|
||||||
the web.
|
the web.
|
||||||
- **[Multi-File Read Tool](./multi-file.md) (`read_many_files`):** (Deprecated,
|
- **[Multi-File Read Tool](./multi-file.md) (`read_many_files`):** (Deprecated,
|
||||||
will be removed in v0.14.0) A specialized tool for reading content from
|
will be removed in v0.16.0) A specialized tool for reading content from
|
||||||
multiple files or directories.
|
multiple files or directories.
|
||||||
- **[Memory Tool](./memory.md) (`save_memory`):** For saving and recalling
|
- **[Memory Tool](./memory.md) (`save_memory`):** For saving and recalling
|
||||||
information across sessions.
|
information across sessions.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Multi File Read Tool (`read_many_files`)
|
# Multi File Read Tool (`read_many_files`)
|
||||||
|
|
||||||
> **Deprecated:** This tool is deprecated and will be removed in v0.14.0. Please
|
> **Deprecated:** This tool is deprecated and will be removed in v0.16.0. Please
|
||||||
> use `read_file` instead. If you need to read multiple files, you can make
|
> use `read_file` instead. If you need to read multiple files, you can make
|
||||||
> multiple parallel calls to `read_file`.
|
> multiple parallel calls to `read_file`.
|
||||||
|
|
||||||
|
|||||||
@@ -650,7 +650,7 @@ export class Config {
|
|||||||
if (list.includes(tool.name) || list.includes(tool.alternateName)) {
|
if (list.includes(tool.name) || list.includes(tool.alternateName)) {
|
||||||
coreEvents.emitFeedback(
|
coreEvents.emitFeedback(
|
||||||
'warning',
|
'warning',
|
||||||
`The tool '${tool.name}' (or '${tool.alternateName}') specified in '${listName}' is deprecated and will be removed in v0.14.0.`,
|
`The tool '${tool.name}' (or '${tool.alternateName}') specified in '${listName}' is deprecated and will be removed in v0.16.0.`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user