| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
documentation (#1478)
Co-authored-by: Scott Densmore <[email protected]>
Co-authored-by: matt korwel <[email protected]>
|
|
Co-authored-by: matt korwel <[email protected]>
|
|
|
|
|
|
|
|
o… (#1409)
Co-authored-by: Scott Densmore <[email protected]>
Co-authored-by: matt korwel <[email protected]>
Co-authored-by: matt korwel <[email protected]>
|
|
Co-authored-by: Dan Tedesco <[email protected]>
|
|
Co-authored-by: matt korwel <[email protected]>
Co-authored-by: Jenna Inouye <[email protected]>
|
|
|
|
remove debug logs (#1393)
|
|
|
|
Co-authored-by: matt korwel <[email protected]>
|
|
Co-authored-by: Jenna Inouye <[email protected]>
|
|
|
|
|
|
|
|
This commit refactors the `usageStatisticsEnabled` setting from a sub-property of the `telemetry` configuration to a top-level setting. This change simplifies the configuration by decoupling usage statistics from the telemetry settings.
The documentation has also been updated to reflect this change.
|
|
|
|
|
|
|
|
OAuth users (b/426943001) (#1307)
|
|
Moves the telemetry.md file from docs/core to the top-level docs/ directory to make it more discoverable.
Updates the link in the main index.md and removes the old reference from the CLI configuration page.
|
|
Make a pass through the docs/core/index.md file to hopefully improve readability and consistency.
Of particular note, I've cut out a big chunk that felt mostly like implementation details that aren't particularly relevant for public consumption, and I cut out a discussion of cli/core interconnection that is covered better higher up in the docs hierarchy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Make a pass through the docs/troubleshooting.md file to hopefully improve readability and consistency.
Notably, some links in the existing documentation appear to point to non-existent pages. I've updated them to what I believe is an appropriate alternative. Also, there's some vague usage of "CLI" and "server", which I've -hopefully correctly- called "Gemini CLI" and "MCP server"
|
|
Co-authored-by: cperry-goog <[email protected]>
Co-authored-by: Chris Perry <[email protected]>
|
|
Co-authored-by: cperry-goog <[email protected]>
|
|
As noted in Issue #1189, the /stats command is missing. While we're here, alphabetizing the / commands makes sense in order to better organization the page.
|
|
Co-authored-by: cperry-goog <[email protected]>
|
|
Most notably, the list of available themes didn't match (in completeness or name) the examples provided at the end of the file (nor the listing I found in /packages/cli/src/ui/themes)
|
|
|
|
Make a pass through the docs/cli/tutorials.md file to hopefully improve readability and consistency.
|
|
Co-authored-by: starsandskies <[email protected]>
Co-authored-by: matt korwel <[email protected]>
|
|
This content looks like it is better hosted in the themes.md doc.
This is as close as possible to an as-is cut-paste from one file to the other, with the goal of minimizing fine-grained review in this particular PR. I'll take another pass through themes.md specifically to improve the moved content in a follow up PR
|
|
|
|
- `GOOGLE_CLOUD_PROJECT` --> `OTLP_GOOGLE_CLOUD_PROJECT`
- Remove `npm run start:gcp` shorthand from docs until after improving cleanup process
|
|
This command enables starting the application with GCP telemetry:
```shell
npm run start:gcp
```
|
|
#750
Renames project ID for telemetry from `GOOGLE_CLOUD_PROJECT` to `OTLP_GOOGLE_CLOUD_PROJECT`.
This change allows for a separate Google Cloud Project to be used for telemetry data, distinct from the project used for other services like Vertex AI or Code Assist. This enhances clarity and flexibility in project configuration.
|
|
Introduces telemetry for file create, read, and update operations.
This change adds the `gemini_cli.file.operation.count` metric, recorded by the `read-file`, `read-many-files`, and `write-file` tools.
The metric includes the following attributes:
- `operation` (string: `create`, `read`, `update`): The type of file operation.
- `lines` (optional, Int): Number of lines in the file.
- `mimetype` (optional, string): Mimetype of the file.
- `extension` (optional, string): File extension of the file.
Here is a stacked bar chart of file operations by extension (`js`, `ts`, `md`):

Here is a stacked bar chart of file operations by type (`create`, `read`, `update`):

#750
cc @allenhutchison as discussed
|
|
Outputs a raw JSON version of the parameter names and descriptions as provided to the model, plus minor formatting adjustments to /mcp desc.
|