diff --git a/src/pages/guides/distribute/guidelines/genai/index.md b/src/pages/guides/distribute/guidelines/genai/index.md index 441ef0519..9b3baee65 100644 --- a/src/pages/guides/distribute/guidelines/genai/index.md +++ b/src/pages/guides/distribute/guidelines/genai/index.md @@ -23,7 +23,6 @@ We have split this section into: - [Requirements](./requirements.md) (which must be followed) - [Recommendations](./recommendations.md) (which are suggestions we encourage for best practice) - **If we receive reports of abuse, we may elect to remove an add-on whether it is private or public.** diff --git a/src/pages/guides/distribute/guidelines/genai/recommendations.md b/src/pages/guides/distribute/guidelines/genai/recommendations.md index fa908668f..4cc0b8506 100644 --- a/src/pages/guides/distribute/guidelines/genai/recommendations.md +++ b/src/pages/guides/distribute/guidelines/genai/recommendations.md @@ -66,4 +66,4 @@ You can use the Firefly web app or Text-to-image features in Adobe Express as a ## Haven’t found what you’re looking for? Let us know -These recommendations are a “living document” and will be updated over time, as our guidelines - and the technology itself - evolve. If you have any questions about a specific case or issue, or would like to learn more about our requirements, please [contact us](mailto:cc-extensibility-genai-integration-support@adobe.com). \ No newline at end of file +These recommendations are a “living document” and will be updated over time, as our guidelines - and the technology itself - evolve. If you have any questions about a specific case or issue, or would like to learn more about our requirements, please [contact us](mailto:cc-extensibility-genai-integration-support@adobe.com). diff --git a/src/pages/guides/distribute/guidelines/genai/requirements.md b/src/pages/guides/distribute/guidelines/genai/requirements.md index f8470f6b0..085b8d729 100644 --- a/src/pages/guides/distribute/guidelines/genai/requirements.md +++ b/src/pages/guides/distribute/guidelines/genai/requirements.md @@ -22,11 +22,11 @@ If your add-on generates text or code, your add-on must remind the user that the Add-ons that meet the following criteria do not require the add-on's developer to submit a self-certification of compliance with our content generation requirements: -- Your add-on is privately listed (**NOTE:** We may still elect to remove your privately listed add-on if we receive credible reports of abuse) -- AI Models that the user installs and runs locally on their device (that is, models that are not included within the add-on bundle) -- Text-to-speech using Generative AI (provided the text is supplied by the user) -- Instrumental music or sound effects created using Generative AI (where there are no lyrics) +* Your add-on is privately listed (**NOTE:** We may still elect to remove your privately listed add-on if we receive credible reports of abuse) +* AI Models that the user installs and runs locally on their device (that is, models that are not included within the add-on bundle) +* Text-to-speech using Generative AI (provided the text is supplied by the user) +* Instrumental music or sound effects created using Generative AI (where there are no lyrics) ## Check back frequently! -These requirements are a “living document” and will be updated over time, as our guidelines - and the technology itself - evolve. If you have any questions about a specific case or issue, or would like to learn more about our requirements, please [contact us](mailto:cc-extensibility-genai-integration-support@adobe.com). \ No newline at end of file +These requirements are a “living document” and will be updated over time, as our guidelines - and the technology itself - evolve. If you have any questions about a specific case or issue, or would like to learn more about our requirements, please [contact us](mailto:cc-extensibility-genai-integration-support@adobe.com). diff --git a/src/pages/references/addonsdk/app-ui.md b/src/pages/references/addonsdk/app-ui.md index cf741f5c7..9c6c481c2 100644 --- a/src/pages/references/addonsdk/app-ui.md +++ b/src/pages/references/addonsdk/app-ui.md @@ -70,6 +70,10 @@ addOnUISdk.ready.then(async () => { Programmatically open the Editor panel in Adobe Express. When sub-tabs are available, this method can target them, as well as pre-populate the Search field. + + +**IMPORTANT:** This method is currently ***experimental only*** and should not be used in any add-ons you will be distributing until it has been declared stable. To use this method, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](../manifest/index.md#requirements) section of the `manifest.json`. + #### Signature `openEditorPanel(panel: EditorPanel, action?: PanelAction): void;` diff --git a/src/pages/references/changelog.md b/src/pages/references/changelog.md index 282f923a1..0c6d25033 100644 --- a/src/pages/references/changelog.md +++ b/src/pages/references/changelog.md @@ -23,7 +23,7 @@ contributors: ## 2024-05-28 -- Added a new [`openEditorPanel()`](../references/addonsdk/app-ui.md#openeditorpanel) API to programmatically open and interact with the Editor panel. This method of the `addOnUISdk.app.ui` allows navigation to specific tabs and collections, as well as performing content searches. The [Constants](../references/addonsdk/addonsdk-constants.md) page has been updated accordingly. +- Added a new *experimental* [`openEditorPanel()`](../references/addonsdk/app-ui.md#openeditorpanel) API to programmatically open and interact with the Editor panel. This method of the `addOnUISdk.app.ui` allows navigation to specific tabs and collections, as well as performing content searches. The [Constants](../references/addonsdk/addonsdk-constants.md) page has been updated accordingly. ## 2024-05-21