Skip to content

Commit 5e941ff

Browse files
committed
add admin consent url
Signed-off-by: Praneeth Bedapudi <praneeth@bpraneeth.com>
1 parent 06873e6 commit 5e941ff

2 files changed

Lines changed: 44 additions & 3 deletions

File tree

docs/llm-gateway/features/copilot-studio.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,23 @@ Copilot Studio may also include an `api-version` query parameter. QuilrAI ignore
6060

6161
## Admin consent
6262

63-
A Microsoft 365 or Power Platform admin must grant tenant-wide consent before the organization can use the QuilrAI Copilot Studio integration.
63+
A Microsoft 365 or Power Platform admin must grant tenant-wide consent to the QuilrAI Microsoft Entra application before the organization can use the QuilrAI Copilot Studio integration.
6464

6565
<a
66-
className="button button--primary"
66+
className="docs-admin-consent-button"
6767
href="https://login.microsoftonline.com/common/adminconsent?client_id=54abe80d-4f95-4e44-a19a-d360e5cdb617"
6868
target="_blank"
6969
rel="noopener noreferrer"
7070
>
7171
Grant admin consent
7272
</a>
7373

74+
Use this same Microsoft Entra App ID when Power Platform asks for the Azure Entra App ID:
75+
76+
```text
77+
54abe80d-4f95-4e44-a19a-d360e5cdb617
78+
```
79+
7480
## Power Platform setup
7581

7682
1. In QuilrAI, create an LLM Gateway API key with provider `copilot_studio`.
@@ -81,7 +87,7 @@ A Microsoft 365 or Power Platform admin must grant tenant-wide consent before th
8187
6. Select **Additional threat detection**.
8288
7. Select the environment, then select **Set up**.
8389
8. Enable **Allow Copilot Studio to share data with a threat detection provider**.
84-
9. Enter the Microsoft Entra App ID requested by Power Platform.
90+
9. Enter the QuilrAI Microsoft Entra App ID: `54abe80d-4f95-4e44-a19a-d360e5cdb617`.
8591
10. Enter the QuilrAI endpoint base URL as the endpoint link.
8692
11. Choose the Power Platform error behavior and save.
8793

src/css/custom.css

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1463,3 +1463,38 @@ main > .container.padding-top--md.padding-bottom--lg,
14631463
[data-theme="dark"] .code-block-diff-remove-line {
14641464
background-color: rgba(239, 68, 68, 0.08);
14651465
}
1466+
1467+
/* Doc CTAs */
1468+
.docs-admin-consent-button {
1469+
display: inline-flex;
1470+
align-items: center;
1471+
justify-content: center;
1472+
border: 1px solid var(--ifm-color-primary-dark);
1473+
border-radius: 0.5rem;
1474+
background: var(--color-white);
1475+
color: var(--ifm-color-primary-darkest);
1476+
font-weight: 600;
1477+
line-height: 1.2;
1478+
padding: 0.6rem 0.9rem;
1479+
text-decoration: none !important;
1480+
}
1481+
1482+
.docs-admin-consent-button:hover,
1483+
.docs-admin-consent-button:focus-visible {
1484+
background: var(--ifm-color-primary-dark);
1485+
color: var(--color-white);
1486+
text-decoration: none !important;
1487+
}
1488+
1489+
[data-theme="dark"] .docs-admin-consent-button {
1490+
background: transparent;
1491+
border-color: var(--ifm-color-primary);
1492+
color: var(--ifm-color-primary-lightest);
1493+
}
1494+
1495+
[data-theme="dark"] .docs-admin-consent-button:hover,
1496+
[data-theme="dark"] .docs-admin-consent-button:focus-visible {
1497+
background: var(--ifm-color-primary-dark);
1498+
border-color: var(--ifm-color-primary-dark);
1499+
color: var(--color-neutral-950);
1500+
}

0 commit comments

Comments
 (0)