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

# AI Settings

> Configure AI assistant integrations and external app connections.

export const FeatureAvailability = ({module, feature}) => {
  const label = feature || module;
  return <Info title="Feature availability">
      {label ? <>This feature requires the <strong>{label}</strong> module. </> : <>This feature may not be enabled for your organization. </>}
      If you don't see it in Juno, contact your administrator.
    </Info>;
};

<FeatureAvailability feature="AI Features" />

## AI configuration

Access AI settings from **Admin → Settings → AI Settings**.

***

## External app integrations

Control which external apps the AI assistant can connect to on behalf of your users:

| App                 | What it enables                           |
| ------------------- | ----------------------------------------- |
| **Google Calendar** | AI can access and manage calendar events  |
| **Google Drive**    | AI can search and access files from Drive |
| **Jira**            | AI can view and manage Jira issues        |

Toggle each app on or off. When enabled, users are individually prompted to authorize the connection — the admin toggle controls availability, not access.

***

## How it works

1. **Admin enables** an external app (e.g. Google Calendar)
2. **Users authorize** the app from their profile when they first try to use it
3. **AI assistant** can now access that app's data when answering questions

***

## Disabling an app

Toggle the app off to revoke access for all users. Existing authorizations are preserved but the AI will no longer use the app's data.

***

## Documentation search

The Juno assistant can answer "how do I…" questions by searching the Juno documentation. This capability is gated by a separate feature flag so it can be rolled out independently of the rest of the assistant.

| Flag                       | Effect when enabled                                                   |
| -------------------------- | --------------------------------------------------------------------- |
| `CAN_USE_SUPER_AGENT_DOCS` | Assistant can search and cite Juno documentation pages in its answers |

When the flag is **off**, users still get the full Juno assistant for goals, team, learning, calendar, and connected apps — but how-to questions return **"Documentation search is coming soon."** instead of a docs answer.

The flag is server-validated per tenant. Contact your CSM to enable it for your organization.

***

## Requirements

AI Settings require:

* Admin role (level 5+)
* AI Features module enabled
* Supervisor Agent feature flag enabled

Documentation search additionally requires the `CAN_USE_SUPER_AGENT_DOCS` feature flag.
