documentation/docs/guides/managing-tools/adjust-tool-output.md
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import { PanelLeft } from 'lucide-react';
<Tabs groupId="interface"> <TabItem value="ui" label="goose Desktop" default> Response Styles customize how tool interactions are displayed in the goose Desktop chat window.To change this setting:
Settings button on the sidebar.Chat.Response Styles, select either Detailed or Concise.Concise (Default)
Detailed
This setting only affects the default state of tool calls in the conversation. You can always manually expand or collapse any tool call regardless of your chosen style.
</TabItem> <TabItem value="cli" label="goose CLI"> When working with the goose CLI, you can control the verbosity of tool output.To adjust the tool output, run:
goose configure
Then choose Adjust Tool Output
┌ 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:
┌ 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
Medium Importance
All
During an active session, use the /r slash command to toggle whether tool parameters are truncated or shown in full:
Context: ●○○○○○○○○○ 5% (9695/200000 tokens)
( O)> /r
✓ Full tool output enabled - tool parameters will no longer be truncated
This is useful when you need to see complete file paths, URLs, or command arguments. Type /r again to return to truncated output.
</TabItem>
</Tabs>