diff --git a/docs/components/early-access/alpha/bpmn-copilot/bpmn-copilot.md b/docs/components/early-access/alpha/bpmn-copilot/bpmn-copilot.md new file mode 100644 index 00000000000..f9a102d190a --- /dev/null +++ b/docs/components/early-access/alpha/bpmn-copilot/bpmn-copilot.md @@ -0,0 +1,37 @@ +--- +id: bpmn-copilot +title: BPMN copilot +sidebar_label: Get started +description: "Using AI, select users can now chat with the BPMN copilot for assistance generating new and functional BPMN process diagrams in Web Modeler based on a process description." +--- + +Camunda 8 SaaS only + +:::note Terms of use +By using this tool, you agree to Camunda's use of the anonymized input and output data and anonymized feedback to improve it. +::: + +Using AI, users can now chat with the BPMN copilot for assistance generating new and functional BPMN process diagrams in [Web Modeler](/components/modeler/web-modeler/launch-web-modeler.md) based on a process description. + +## Get started + +:::warning +Creating a BPMN process diagram with the BPMN copilot will overwrite existing work. +::: + +To use the BPMN copilot in Web Modeler, take the following steps: + +1. If you have not yet already, [opt in](/components/console/manage-organization/enable-alpha-features.md#enable-ai-powered-features) to use this feature. +2. Log in to [Web Modeler](/components/modeler/web-modeler/launch-web-modeler.md). +3. Click **New project > Create new > BPMN diagram**. The Camunda copilot chat window will open. + +![bpmn copilot chat window](./img/bpmn-copilot-chat.png) + +4. In the chat box, enter your prompt. This prompt should be a simple, clear, and concise request describing the BPMN diagram you would like to generate. For example, "Generate a mortgage loan process diagram". Note that more complex requests may take longer to process. +5. Wait for your diagram to generate; this takes about 50 seconds. Once complete, the copilot will then respond with an outline of the process it created. + +:::note + +Timeouts may occur at this step if your query is too complex. + +::: diff --git a/docs/components/early-access/alpha/bpmn-copilot/img/bpmn-copilot-chat.png b/docs/components/early-access/alpha/bpmn-copilot/img/bpmn-copilot-chat.png new file mode 100644 index 00000000000..52d318c7977 Binary files /dev/null and b/docs/components/early-access/alpha/bpmn-copilot/img/bpmn-copilot-chat.png differ diff --git a/sidebars.js b/sidebars.js index 14ac338fc90..1451f0aebb5 100644 --- a/sidebars.js +++ b/sidebars.js @@ -699,10 +699,31 @@ module.exports = { id: "components/early-access/alpha/alpha-features", }, items: [ - "components/early-access/alpha/sap/sap-integration", - "components/early-access/alpha/sap/odata-connector", - "components/early-access/alpha/sap/rfc-connector", - "components/early-access/alpha/sap/btp-integration", + { + type: "category", + label: "SAP", + link: { + type: "doc", + id: "components/early-access/alpha/sap/sap-integration", + }, + items: [ + "components/early-access/alpha/sap/sap-integration", + "components/early-access/alpha/sap/odata-connector", + "components/early-access/alpha/sap/rfc-connector", + "components/early-access/alpha/sap/btp-integration", + ], + }, + { + type: "category", + label: "BPMN copilot", + link: { + type: "doc", + id: "components/early-access/alpha/bpmn-copilot/bpmn-copilot", + }, + items: [ + "components/early-access/alpha/bpmn-copilot/bpmn-copilot", + ], + }, ], }, ],