> ## 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 - AI settings

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

Disables specific tools in the AI chat interface when the model is in use. Auxiliary tools, integration tools, and certain generation capabilities (like dashboard creation) 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                                                    |
      | ---------------------------- | ------------------------------------------------------------------- |
      | `create_dashboard_from_chat` | [Dashboard creation from chat](/ai/chat#creating-dashboards)        |
      | `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_code`         | [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_messages`      | [Slack](/integrations/ai/slack) channel search                      |
      | `visualize`                  | Automatic chart generation                                          |
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Disable dashboard creation from chat" theme={null}
ai_settings:
  disabled_tools:
    - create_dashboard_from_chat
```

```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_messages
    - fetch_slack_thread
```
