We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c2bf79 commit 72944f5Copy full SHA for 72944f5
index.js
@@ -2,17 +2,12 @@ const Workflow = require("@saltcorn/data/models/workflow");
2
const Form = require("@saltcorn/data/models/form");
3
const { features } = require("@saltcorn/data/db/state");
4
5
-const configuration_workflow = () =>
6
- new Workflow({
7
- steps: [],
8
- });
9
10
module.exports = {
11
sc_plugin_api_version: 1,
12
- //configuration_workflow,
13
dependencies: ["@saltcorn/large-language-model"],
14
viewtemplates: features.workflows
15
- ? [require("./chat-copilot")]
+ ? [require("./chat-copilot"), require("./user-copilot")]
16
: [require("./action-builder"), require("./database-designer")],
17
functions: features.workflows
18
? { copilot_generate_workflow: require("./workflow-gen") }
0 commit comments