Skip to content

Commit 91cc6c1

Browse files
authored
Merge branch 'main' into adrianorth-patch-3
2 parents fb0c85e + 8e82d15 commit 91cc6c1

File tree

3 files changed

+32
-15
lines changed

3 files changed

+32
-15
lines changed

powerapps-docs/developer/data-platform/build-and-package.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build and package plug-in code
33
description: Learn about building plug-in code into assemblies and packages for later registration and upload to the Microsoft Dataverse service.
4-
ms.date: 11/02/2023
4+
ms.date: 02/20/2024
55
ms.reviewer: pehecke
66
ms.topic: article
77
author: divkamath
@@ -73,7 +73,6 @@ When you register individual plug-in assemblies without the dependent assemblies
7373
The following limitations apply when using plug-in dependent assemblies.
7474

7575
- [Workflow extensions](workflow/workflow-extensions.md), also known as *custom workflow activities* aren't supported when using the dependent assemblies capability.
76-
- Plug-ins for virtual table data providers aren't supported.
7776
- On-premises environments aren't supported.
7877
- Un-managed code isn't supported. You can't include references to unmanaged resources.
7978

powerapps-docs/maker/common/wrap/create-key-vault-for-code-signing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ In this article, you will learn how to use an existing Azure Key Vault or create
8383
- Mac: base64 `-i example.mobileprovision`
8484
- Windows: `certutil -encode data.txt tmp.b64`
8585

86-
4. Upload the `base64` string obtained from the previous step to the Key Vault secret. Next, upload the .p12 file to Key Vault Certificate.
86+
4. Upload the `base64` string obtained from the previous step to the Key Vault secret. Next, upload the .pfx file to Key Vault Certificate.
8787

8888

8989
:::image type="content" source="media/wrap-canvas-app/wrap-2.png" alt-text="Create a cert for iOS.":::

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

Lines changed: 30 additions & 12 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/20/2024
55
ms.custom:
66
- responsible-ai-faqs
77
ms.topic: article
@@ -25,7 +25,8 @@ You can use Copilot to quickly generate well-written text to use as input text i
2525
When trying to quickly input text into multiline text boxes or rich text editors in a canvas app, you might worry about forming complete sentences and having grammatically correct text. With the assistance of Copilot, you can quickly jot down ideas in a text box without worrying about format and grammar. Copilot corrects errors in grammar and eloquently refines your ideas. You can also change the tone and length of the output to fit the scenario.
2626

2727
> [!IMPORTANT]
28-
> - To use this feature, your admin must allow data movement across regions. Your environment must also be in a supported region. For information about supported regions and how to allow data movement across regions, see [Enable copilots and generative AI features](/power-platform/admin/geographical-availability-copilot).
28+
> - To use this feature, your environment must be in a US region.
29+
> - To use this feature, the browser language must be US English.
2930
> - This capability is powered by [Azure OpenAI Service](/azure/cognitive-services/openai/overview).
3031
> - This capability may be subject to usage limits or capacity throttling.
3132
> - Copilot isn't supported and won't work for environments that have customer-managed key (CMK) or have lockbox.
@@ -36,7 +37,7 @@ When trying to quickly input text into multiline text boxes or rich text editors
3637
## Use this feature
3738

3839
1. Insert your cursor into a multiline text box or rich text editor in a canvas app.
39-
1. Select the **Draft with Copilot** icon, and then select the **Draft with Copilot** option.
40+
1. The option to **Draft with Copilot** should appear. Select that option.
4041
2. Insert text into the text box. For example, you can quickly jot down an idea.
4142

4243
> [!Note]
@@ -51,23 +52,40 @@ When trying to quickly input text into multiline text boxes or rich text editors
5152

5253
## Turn off text assistance in web player
5354

54-
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:
5565

5666
1. Sign in to [Power Apps](https://make.powerapps.com).
5767
1. On the left navigation pane, select **Apps**.
5868
1. Select a canvas app and then select **Settings** on the command bar.
5969
1. On the **App settings** pane, set the toggle for **Text assistance in web player (preview)** to **Off**.
6070
1. Select **Save**.
6171

62-
Power Platform admins can turn off this feature on a per-environment basis using Windows PowerShell **Set-EnvironmentCopilotSettings** cmdlet.
72+
To turn off for an app using PowerShell:
6373

64-
```powershell
65-
$Set-AdminPowerAppEnvironmentCopilotSettings -EnvironmentName 'EnvironmentName' -AppDraftingCopilotEnabled $false
66-
```
67-
68-
## Known issue
74+
```powershell
75+
$Set-PowerAppSettings -AppName 'AppName' -DraftingCopilotEnabled $false
76+
```
77+
78+
### Turn off text assistance for an environment
6979

70-
**Error**: There was a problem using this description. Try again.
80+
To turn off text assistance for a specific environment, use the following cmdlet.
7181

72-
**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.
82+
```powershell
83+
$Set-AdminPowerAppEnvironmentCopilotSettings -EnvironmentName 'EnvironmentName' -AppDraftingCopilotEnabled $false
84+
```
85+
86+
## Known issue
7387

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)