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

# AI Suggestions

> Dashboard for reviewing and managing AI-generated compliance recommendations, organized by status: all, pending, accepted, rejected.

This screen surfaces AI-generated compliance suggestions for review and action at route `/gr/ai/suggestions`.

## Overview

The AI Suggestions Dashboard requires the AI Compliance Advisor feature to be enabled via GR settings (`gr.admin` controls this). When disabled, the page shows an informational message with a link to settings. When enabled, it displays four stat cards (Total Suggestions, Pending Review, Accepted, Rejected) and a tabbed list with tabs for All, Pending, Accepted, and Rejected suggestions. Each tab renders the `AISuggestionsList` component filtered by status. A jurisdiction badge shows the current compliance jurisdiction. Users can open the AI Chat Panel (`AIComplianceChatPanel`) with the **Ask AI Advisor** button.

## Who it's for

Access follows your organization's role and module configuration. Any authenticated user with access to the GR module can view this screen if the AI Compliance feature is enabled in settings.

## Before you start

* AI Compliance must be enabled in GR settings (`/gr/settings`).
* Jurisdiction profile must be configured for jurisdiction-aware suggestions.

## Steps

<Steps>
  <Step title="Navigate to AI Suggestions">Go to `/gr/ai/suggestions`.</Step>
  <Step title="Check feature availability">If the AI Compliance Advisor is disabled, click **Go to Settings** and enable the feature under GR settings.</Step>
  <Step title="Review pending suggestions">Click the **Pending** tab to see suggestions awaiting action.</Step>
  <Step title="Accept or reject suggestions">Use the actions within `AISuggestionsList` to accept or dismiss individual suggestions.</Step>
  <Step title="Ask the AI Advisor">Click **Ask AI Advisor** to open the compliance chat panel for freeform questions.</Step>
</Steps>

## Key concepts

* **Suggestion statuses** — `pending` (awaiting review), `accepted` (applied), `rejected` (dismissed).
* **JurisdictionBadge** — displays the configured jurisdiction from the organization's `JurisdictionProfile`.
* **AI Compliance Advisor** — must be enabled in GR settings; when disabled this screen shows a blocked state.

## Related

<Columns cols={2}>
  <Card title="Governance & Compliance" icon="scale-balanced" href="/gr/overview">
    Governance & Compliance core overview.
  </Card>

  <Card title="Governance & parity" icon="clipboard-check" href="/governance/index">
    Documentation coverage and governance.
  </Card>
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/gr.tsx
  * src/cores/gr/pages/AISuggestionsDashboard.tsx
  * src/cores/gr/hooks/useAIComplianceEnabled.ts
  * src/cores/gr/ai/index.ts
</Accordion>
