Skip to content

Commit 42cb978

Browse files
authored
Review
1 parent b2e6514 commit 42cb978

File tree

1 file changed

+25
-21
lines changed

1 file changed

+25
-21
lines changed

powerapps-docs/user/well-written-input-text-copilot.md

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Draft well-written, input text with Copilot (preview)
33
description: Learn how to use Copilot to quickly generate well-written text that can be used in text boxes in apps made with Power Apps.
4-
ms.date: 01/11/2024
4+
ms.date: 02/15/2024
55
ms.custom:
66
- responsible-ai-faqs
77
ms.topic: article
@@ -26,7 +26,7 @@ When trying to quickly input text into multiline text boxes or rich text editors
2626

2727
> [!IMPORTANT]
2828
> - To use this feature, your environment must be in a US region.
29-
> - To use this feature, the browser language must be 'en'
29+
> - To use this feature, the browser language must be US English.
3030
> - This capability is powered by [Azure OpenAI Service](/azure/cognitive-services/openai/overview).
3131
> - This capability may be subject to usage limits or capacity throttling.
3232
> - Copilot isn't supported and won't work for environments that have customer-managed key (CMK) or have lockbox.
@@ -52,36 +52,40 @@ When trying to quickly input text into multiline text boxes or rich text editors
5252

5353
## Turn off text assistance in web player
5454

55-
Makers can turn off this feature on a per-app basis within app settings using the [Power Apps](https://make.powerapps.com) maker portal.
55+
You can turn off text assistance on for an app using app setting or PowerShell cmdlet, or an environment using PowerShell cmdlet.
56+
57+
> [!NOTE]
58+
> When using PowerShell cmdlets, you must use Power Apps admin PowerShell module version 2.0.179 or later. More information: [Get started using the Power Apps admin module](/powershell/powerapps/get-started-powerapps-admin).
59+
60+
### Turn off text assistance for an app
61+
62+
You can use either the app setting, or PowerShell cmdlet to turn this setting off for an app.
63+
64+
To turn off for an app using the app settings:
5665

5766
1. Sign in to [Power Apps](https://make.powerapps.com).
5867
1. On the left navigation pane, select **Apps**.
5968
1. Select a canvas app and then select **Settings** on the command bar.
6069
1. On the **App settings** pane, set the toggle for **Text assistance in web player (preview)** to **Off**.
6170
1. Select **Save**.
6271

63-
To disable features via PowerShell, you must install the correct module
72+
To turn off for an app using PowerShell:
6473

65-
```powershell
66-
$Install-Module -Name Microsoft.PowerApps.Administration.PowerShell -RequiredVersion 2.0.179
67-
```
68-
Makers can turn off this feature on a per-app basis using Windows PowerShell **Set-PowerAppSettings** cmdlet.
74+
```powershell
75+
$Set-PowerAppSettings -AppName 'AppName' -DraftingCopilotEnabled $false
76+
```
6977

70-
```powershell
71-
$Set-PowerAppSettings -AppName 'AppName' -DraftingCopilotEnabled $false
72-
```
78+
### Turn off text assistance for an environment
7379

74-
Power Platform admins can turn off this feature on a per-environment basis using Windows PowerShell **Set-EnvironmentCopilotSettings** cmdlet.
80+
To turn off text assistance for a specific environment, use the following cmdlet.
7581

76-
```powershell
77-
$Set-AdminPowerAppEnvironmentCopilotSettings -EnvironmentName 'EnvironmentName' -AppDraftingCopilotEnabled $false
78-
```
82+
```powershell
83+
$Set-AdminPowerAppEnvironmentCopilotSettings -EnvironmentName 'EnvironmentName' -AppDraftingCopilotEnabled $false
84+
```
7985

8086
## Known issue
8187

82-
**Error**: There was a problem using this description. Try again.
83-
84-
**Resolution**: This error may be due to capacity limits. We recommend that you give the system some time before trying again. It may also be that you haven't given the system enough information to properly generate output. Add more details to try again.
85-
86-
There is not a way to disable this feature on a per-tenant basis. It can only be disabled by the methods listed in this document.
87-
88+
- You might see "There was a problem using this description. Try again." error. This error occurs due to the following possibilities:
89+
- You've reached capacity limits. In this case, try again after some time.
90+
- You've not provided enough information to properly generate output. In this case, add more details to try again.
91+
- There is not a way to disable this feature on a per-tenant basis. It can only be disabled by the methods listed in this document.

0 commit comments

Comments
 (0)