Skip to content

Commit ed4e572

Browse files
Merge branch 'mendix:development' into commit-message-during-auto-merge
2 parents 4af4366 + 6590d2f commit ed4e572

File tree

18 files changed

+29
-26
lines changed

18 files changed

+29
-26
lines changed

content/en/docs/appstore/use-content/platform-supported-content/modules/genai/how-to/byo_connector.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The Echo connector is a module in the [GenAI Showcase App](https://marketplace.m
6868
This section allows you to focus on implementing chat completions, a fundamental capability supported by most LLMs. To make the process more practical, develop an example connector—the Echo Connector. This simple connector returns the similar text as output provided as input while remaining fully compatible with the chat capabilities of GenAICommons and ConversationalUI.
6969
During development, you will get the key considerations to keep in mind when creating your own connector. You can either start from scratch and build your own connector or use the finished Echo Connector from the GenAI Showcase App and modify it to fit your use case.
7070

71-
To enable chat completion, the key microflow to consider is `ChatCompletions_WithHistory`, located in the GenAICommons module. Since this module is protected, its inner logic is not visible.
71+
To enable chat completion, the key microflow to consider is `ChatCompletions_WithHistory`, located in the GenAICommons module.
7272

7373
{{< figure src="/attachments/appstore/platform-supported-content/modules/genai/genai-howto-byo/ChatCompletions_WithHistory.png" >}}
7474

@@ -85,7 +85,7 @@ And one output object:
8585

8686
Since this structure is already standardized, no modifications are needed for the `Request` entity. Instead, when implementing a new connector, map the request data from the existing `Request` object to the format required by the specific provider—in this case, the Echo Connector.
8787

88-
{{< figure src="/attachments/appstore/platform-supported-content/modules/genai/genai-howto-byo/GenAICommons_DomainModel.png" >}}
88+
{{< figure src="/attachments/appstore/platform-supported-content/modules/genai/genai-howto-byo/GenAICommons_TextFiles_DomainModel.png" >}}
8989

9090
Just as the `Request` entity structures input for the LLM, the Response entity defines how the model's output must be formatted for proper display in the chat interface. When an LLM returns a result, it must be converted into the `Response` entity’s format to ensure compatibility with GenAICommons and ConversationalUI.
9191

@@ -106,7 +106,7 @@ The `DeployedModel` represents a GenAI model that the Mendix application can inv
106106

107107
To accommodate this, you will need to create a new entity within your connector that inherits from `GenAICommons.DeployedModel`. This allows you to extend it with any provider-specific attributes required for your integration.
108108

109-
{{< figure src="/attachments/appstore/platform-supported-content/modules/genai/genai-howto-byo/DeployedModel_Entity.png" >}}
109+
{{< figure src="/attachments/appstore/platform-supported-content/modules/genai/genai-howto-byo/GenAICommons_DeployedModel_DM.png" >}}
110110

111111
For the Echo Connector, a specialization of `DeployedModel` is created to include any additional attributes required for proper functionality.
112112

content/en/docs/refguide/modeling/mendix-ai-assistance/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Guidance:
3232

3333
* **Maia Chat** (generally available in Studio Pro 10.12.0) – a built-in chat interface powered by Generative AI in Studio Pro. It answers questions about app development in Mendix, including how to apply concepts, best practices, and development patterns. For more information, see [Maia Chat](/refguide/maia-chat/).
3434
* **Maia Learn** (available in Studio Pro 10.18 and above) - helps you to quickly learn Mendix core concepts and get started with Studio Pro. For more information, see [Maia Learn](/refguide/maia-learn/).
35-
* **Maia Explain** (currently an [experimental feature](/releasenotes/beta-features/) introduced in Studio Pro 10.21.0) – an AI-powered tool that helps you easily understand a microflow or a nanoflow. It explains the general purpose of the logic and highlights specific technical details to help you understand the logic further. For more information, see [Maia Explain](/refguide/maia-explain/).
35+
* **Maia Explain** (introduced in Studio Pro 10.21.0) – an AI-powered tool that helps you easily understand a microflow or a nanoflow. It explains the general purpose of the logic and highlights specific technical details to help you understand the logic further. For more information, see [Maia Explain](/refguide/maia-explain/).
3636

3737
Recommenders:
3838

@@ -43,9 +43,9 @@ Recommenders:
4343

4444
Generators:
4545

46-
* **Domain Model Generator** (currently an [experimental feature](/releasenotes/beta-features/) introduced in Studio Pro 10.13.0) - an AI-powered tool that you can use for generating a [domain model](/refguide/domain-model/). It helps you to generate entities and associations based on text input. It currently only works for empty domain models. For more information, see [Domain Model Generator](/refguide/domain-model-generator/).
47-
* **Page Generator** (currently an [experimental feature](/releasenotes/beta-features/) introduced in Studio Pro 10.21.0) - an AI-powered tool that lets you generate a [page](/refguide/page/). It helps you add and configure widgets based on a text input and an optional image. For more information, see [Page Generator](/refguide/page-generator/).
48-
* **Translation Generator** (currently an [experimental feature](/releasenotes/beta-features/) introduced in Studio Pro 10.12.0) - an AI-powered translation tool available in Mendix Studio Pro. Currently, it can be used for [batch translate](/refguide/translation-generator/#batch-translate) and [translating system texts](/refguide/translation-generator/#translate-system-text) in the new web-based system texts editor (in Studio Pro 10.14.0 and above). For more information, see [Translation Generator](/refguide/translation-generator/).
46+
* **Domain Model Generator** (introduced in Studio Pro 10.13.0) - an AI-powered tool that you can use for generating a [domain model](/refguide/domain-model/). It helps you to generate entities and associations based on text input. It currently only works for empty domain models. For more information, see [Domain Model Generator](/refguide/domain-model-generator/).
47+
* **Page Generator** (introduced in Studio Pro 10.21.0) - an AI-powered tool that lets you generate a [page](/refguide/page/). It helps you add and configure widgets based on a text input and an optional image. For more information, see [Page Generator](/refguide/page-generator/).
48+
* **Translation Generator** (introduced in Studio Pro 10.12.0) - an AI-powered translation tool available in Mendix Studio Pro. Currently, it can be used for [batch translate](/refguide/translation-generator/#batch-translate) and [translating system texts](/refguide/translation-generator/#translate-system-text) in the new web-based system texts editor (in Studio Pro 10.14.0 and above). For more information, see [Translation Generator](/refguide/translation-generator/).
4949

5050
## Maia in Mendix Portal
5151

content/en/docs/refguide/modeling/mendix-ai-assistance/maia-explain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Maia Explain is an AI-powered tool that helps you easily understand a microflow
2020

2121
## Using Maia Learn
2222

23-
Maia Explain is enabled by default. If you want to disable this feature, go to **Edit** > **Preferences** > **New Features** and clear the **Enable Maia Explain (experimental)** checkbox.
23+
Maia Explain is enabled by default. If you want to disable this feature, go to **Edit** > **Preferences** > **New Features** and clear the **Enable Maia Explain** checkbox.
2424

2525
There are two ways to launch Maia Explain:
2626

content/en/docs/refguide/modeling/mendix-ai-assistance/page-generator.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ description: "Describes the features in Page Generator."
88
## Introduction
99

1010
{{% alert color="info" %}}
11-
Page Generator is currently an experimental feature introduced in Studio Pro 10.21.0. For more information on experimental features, see [Beta and Experimental Releases](/releasenotes/beta-features/).
11+
Page Generator was introduced in Studio Pro 10.21.0.
1212
{{% /alert %}}
1313

1414
{{% alert color="info" %}}
1515
To use Page Generator, an internet connection and signing in to Studio Pro are required.
1616
{{% /alert %}}
1717

18-
Maia Page Generator is an AI-powered tool that you can use for generating a [page](/refguide/page/). It helps you add and configure widgets based on a text input and an optional image. As an experimental feature, Page Generator has certain limitations. For example, it is currently intended only for use with empty pages, and any existing widgets on a page will be removed. For more details, see the [Limitations](#limitation) section below.
18+
Maia Page Generator is an AI-powered tool that you can use for generating a [page](/refguide/page/). It helps you add and configure widgets based on a text input and an optional image. Page Generator has some limitations. For example, it is currently intended only for use with empty pages, and any existing widgets on a page will be removed. For more details, see the [Limitations](#limitation) section below.
1919

2020
## Using Page Generator
2121

@@ -60,7 +60,7 @@ Keep in mind that Maia analyzes only the structure of the image. The theming of
6060

6161
## Limitations {#limitation}
6262

63-
As an experimental feature, Page Generator has some limitations.
63+
Page Generator has some limitations.
6464

6565
### Empty Pages Only
6666

content/en/docs/refguide/modeling/mendix-ai-assistance/translation-generator.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ For more information on how to enable and use this AI translation tool in Studio
2323

2424
To enable Translation Generator, go to **Preferences** > the **New Features** tab > the **Maia** section.
2525

26-
{{< figure src="/attachments/refguide/modeling/mendix-ai-assistance/translation-generator/enable-translation-generator.png" max-width=100% >}}
27-
2826
### Generating Translation for Batch Translate {#batch-translate}
2927

3028
Once enabled, you will find the **Generate Translations...** option in **Language** > **Batch translate**.
@@ -39,8 +37,6 @@ Translation Generator only translates the texts that do not have a translation y
3937

4038
After clicking **Generate Translations...**, you will be asked to confirm your choice and be advised to review the generated translations.
4139

42-
{{< figure src="/attachments/refguide/modeling/mendix-ai-assistance/translation-generator/confirmation.png" max-width=80% >}}
43-
4440
Once translations are generated, you need to Click **Translate** to save the changes. You can then go to the next language to translate further.
4541

4642
{{% alert color="warning" %}}

content/en/docs/refguide/modeling/menus/edit-menu/preferences-dialog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,11 +307,11 @@ Publishing data as a GraphQL service is available as of Studio Pro 10.14. When y
307307

308308
### Maia
309309

310-
#### Enable Domain Model Generator (Experimental)
310+
#### Enable Domain Model Generator
311311

312312
Maia Domain Model Generator was introduced in Studio Pro 10.13.0. Enable this option to help you generate entities and associations for empty domain models. For more information on how to use this feature, see [Domain Model Generator](/refguide/domain-model-generator/).
313313

314-
#### Enable Translation Generator (Experimental)
314+
#### Enable Translation Generator
315315

316316
Maia Translation Generator was introduced in Studio Pro 10.12.0. Enable this option to help you translate your model to different languages through **Batch translate** under the **Language** menu. For more information, see [Translation Generator](/refguide/translation-generator/).
317317

content/en/docs/releasenotes/deployment/sap-cloud-platform.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ For information on the current status of deployment to SAP BTP and any planned r
1414

1515
## 2025
1616

17+
### April 18, 2025
18+
19+
#### Portal Improvements
20+
21+
* We updated the portal configuration for the XSUAA service to include a default wildcard (`*`) in the redirect URL. This enables flexible pattern matching to support dynamic endpoints, as per SAP [mandates](https://help.sap.com/whats-new/cf0cb2cb149647329b5d02aa96303f56?locale=en-US&Component=Authorization+and+Trust+Management+Service).
22+
* We removed the `xsenablesyncservice` property from the XSUAA service configuration, as per SAP mandates.
23+
1724
### February 16, 2025
1825

1926
#### Portal Improvements

content/en/docs/releasenotes/studio-pro/10/10.12.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ We fixed an issue where the **Download Latest Version** button in the App select
496496

497497
* We added `mx.exe`, `mxbuild.exe`, `mxutil.exe`, `MprTool.exe`, and `MendixConsoleLog.exe` tools to the Windows x64 and ARM64 portable installers. (Ticket 202611)
498498
* We fixed several memory leaks that happened when closing the **Open App** dialog box.
499-
* We added a link to the documentation for the translation generator experimental feature (that can be enabled in the **New Features** tab).
499+
* We added a link to the documentation for the translation generator feature (that can be enabled in the **New Features** tab).
500500
* We improved the performance of retrieving many objects for certain data sources, such as a microflow data source.
501501

502502
### Fixes
@@ -623,7 +623,7 @@ Below is a list of Maia features introduced in this release:
623623
* We rebranded MxAssist Logic Bot to [Maia Logic Recommender](/refguide/logic-recommender/) in the logic editors.
624624
* We introduced the new [Maia Workflow Recommender](/refguide/workflow-recommender/) that provides assistance during development in the workflow editor and helps you build workflows faster. It currently suggests activities with useful properties, for instance, a user task with a user-targeting microflow (only microflows that are applicable for user targeting), or Jump activities with only/all allowed activities to jump to.
625625
* The Recommenders are enabled by default and can now be disabled via Studio Pro **Preferences** > **Maia** > **In-Editor Recommender**.
626-
* We added a new experimental feature [Maia Translation Generator](/refguide/translation-generator/) to **Language** > **Batch Translate...**. You can enable it via Studio Pro **Preferences** > **New Features**.
626+
* We added a new feature [Maia Translation Generator](/refguide/translation-generator/) to **Language** > **Batch Translate...**. You can enable it via Studio Pro **Preferences** > **New Features**.
627627

628628
#### Primitive Parameters Support for Logic Called from Pages
629629

content/en/docs/releasenotes/studio-pro/10/10.13.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ weight: 87
4141

4242
#### Domain Model Generator
4343

44-
We added a new experimental conversational interface in Maia for the users to describe their business model and Maia will generate entities, attributes and associations for them:
44+
We added a new conversational interface in Maia for the users to describe their business model and Maia will generate entities, attributes and associations for them:
4545

46-
* To enable this feature, in **Edit** > **Preferences** > **New Features**, turn on the **Enable domain model generation (experimental)** toggle.
46+
* To enable this feature, in **Edit** > **Preferences** > **New Features**, turn on the **Enable domain model generation** toggle.
4747
* To launch the domain model generation interface, the user needs to open an empty domain model and click **Generate Domain Model** at its toolbar. If the domain model is not empty, the button will be disabled.
4848
* If the user closes the attached domain model, the domain model generation session within Maia will also close.
4949

content/en/docs/releasenotes/studio-pro/10/10.14.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ weight: 86
3030
* We rebuilt the **App Explorer** to give it the same look and feel for both Windows and macOS. For macOS the new version is enabled by default. For Windows, you can switch to the new version of the App Explorer via **Edit > Preferences > New Features**.
3131
We enabled the modernized version of **Toolbox** by default. The modernized **Toolbox** is more optimized and responsive than ever. It is still possible to use the older version until it is fully removed in one of the future releases.
3232
* We fixed a memory leak related to running an app.
33-
* We added a link to the documentation for the translation generator experimental feature (that can be enabled in the **New Features** tab).
33+
* We added a link to the documentation for the translation generator feature (that can be enabled in the **New Features** tab).
3434
* We upgraded the JDBC driver for Microsoft SQL Server to version 12.8.0. Note that if you connect to SQL Server using integrated security in a module such as the [Database Connector](https://marketplace.mendix.com/link/component/2888), you may need to update the JDBC driver in `userlib` as well.
3535
* We moved the **Namespace** text box in published OData services in Studio Pro to the **Settings** tab.
3636
* We updated the OpenAPI document for published OData services. The POST and PATCH operations now have their own schemas so it is clear which properties clients can assign a value to.

0 commit comments

Comments
 (0)