Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: new guide on adjusting tool output in CLI #1357

Merged
merged 1 commit into from
Feb 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions documentation/docs/guides/adjust-tool-output.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
sidebar_position: 7
---
# Adjust Tool Output

When working with the Goose CLI, you can control the verbosity of tool output.

To adjust the tool output, run:

```sh
goose configure
```

Then choose `Adjust Tool Output`

```sh
┌ goose-configure
◆ What would you like to configure?
│ ○ Configure Providers
│ ○ Add Extension
│ ○ Toggle Extensions
│ ○ Remove Extension
// highlight-next-line
│ ● Adjust Tool Output (Show more or less tool output)
```

Next, choose one of the available modes:

```sh
┌ goose-configure
◇ What would you like to configure?
│ Adjust Tool Output
// highlight-start
◆ Which tool output would you like to show?
│ ○ High Importance
│ ○ Medium Importance
│ ○ All
// highlight-end
```

- **High Importance**
- Shows only the most important tool outputs
- Most minimal output level

- **Medium Importance**
- Shows medium and high importance outputs
- Example: Results of file-write operations

- **All**
- Shows all tool outputs
- Example: Shell command outputs
- Most verbose level