Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

draft bpmn copilot #4735

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions docs/components/early-access/alpha/bpmn-copilot/bpmn-copilot.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
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."
---

<span class="badge badge--cloud">Camunda 8 SaaS only</span>

:::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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
By using this tool, you agree to Camunda's use of the anonymized input and output data and anonymized feedback to improve it.
By using this tool, you agree to Camunda's use of the anonymized input and output data and anonymized feedback to improve it.
Camunda does not collect your prompts and the resulting BPMN diagrams.

@ev-codes to confirm

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@philippfromme will be the best person to confirm this, since he's working on the Copilot AI model directly.

:::

Using AI, select 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. Log in to [Web Modeler](/components/modeler/web-modeler/launch-web-modeler.md).
2. Click **New project > Create new > BPMN diagram**. If you have opted in to test this feature, the Camunda copilot chat window will pop up.
christinaausley marked this conversation as resolved.
Show resolved Hide resolved

![bpmn copilot chat window](./img/bpmn-copilot-chat.png)

3. 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". For more information, you can also ask questions like "How do I design a process?"
christinaausley marked this conversation as resolved.
Show resolved Hide resolved
4. 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.
christinaausley marked this conversation as resolved.
Show resolved Hide resolved
5. Review the generated diagram. If the diagram is not exact, you can continue chatting with the BPMN copilot by requesting changes or rephrasing your request. For example, "add exceptions". The new diagram will overwrite existing work, but the BPMN copilot will automatically generate a [milestone](/components/modeler/web-modeler/milestones.md) of the previous version, so you can return or revert to it anytime.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The more complicated the existing diagram, the longer it will to complete the request

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@christinaausley in the first phase (i.e., what would be available in January), this #5 point will not yet be available.

I recommend removing it entirely for now.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this applicable to the copilot automatically generating milestones as well?

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 25 additions & 4 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
},
],
},
],
Expand Down
Loading