> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

# disabled_tools

> Disables specific auxiliary tools in the AI chat interface, such as Slack, Google Calendar, GitHub, visualize, or learn from conversation.

Disables specific auxiliary tools in the AI chat interface. Only auxiliary and integration tools can be disabled. Core query generation tools remain available to prevent breaking basic chat functionality.

## Syntax

```yaml theme={null}
ai_settings:
  disabled_tools:
    - <tool_name>
```

## Properties

<ParamField path="ai_settings" type="object">
  An object that contains various AI settings. See [`ai_settings`](/modeling/models/parameters/ai-settings) for more information.

  <Expandable title="ai_settings properties" defaultOpen="true">
    <ParamField path="disabled_tools" type="string[]">
      A list of auxiliary tools to disable in the chat interface. Valid values are:

      | Tool                      | What it disables                                                    |
      | ------------------------- | ------------------------------------------------------------------- |
      | `fetch_github_file`       | Fetching [GitHub](/integrations/ai/github) file content             |
      | `fetch_google_drive_file` | Fetching [Google Drive](/integrations/ai/google-drive) file content |
      | `fetch_slack_thread`      | Fetching [Slack](/integrations/ai/slack) thread content             |
      | `learn_from_conversation` | [Learn from conversation](/ai/learn-from-conversation)              |
      | `search_github`           | [GitHub](/integrations/ai/github) repository search                 |
      | `search_google_calendar`  | [Google Calendar](/integrations/ai/google-calendar) search          |
      | `search_google_drive`     | [Google Drive](/integrations/ai/google-drive) search                |
      | `search_slack`            | [Slack](/integrations/ai/slack) channel search                      |
      | `visualize`               | Automatic chart generation                                          |
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Disable a single AI tool" theme={null}
ai_settings:
  disabled_tools:
    - visualize
```

```yaml title="Disable multiple AI tools" theme={null}
ai_settings:
  disabled_tools:
    - learn_from_conversation
    - visualize
    - search_google_calendar
```

```yaml title="Disable Slack integration tools" theme={null}
ai_settings:
  disabled_tools:
    - search_slack
    - fetch_slack_thread
```
