-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuser-copilot.js
913 lines (869 loc) · 27.7 KB
/
user-copilot.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
const Field = require("@saltcorn/data/models/field");
const Table = require("@saltcorn/data/models/table");
const Form = require("@saltcorn/data/models/form");
const View = require("@saltcorn/data/models/view");
const Trigger = require("@saltcorn/data/models/trigger");
const FieldRepeat = require("@saltcorn/data/models/fieldrepeat");
const db = require("@saltcorn/data/db");
const WorkflowRun = require("@saltcorn/data/models/workflow_run");
const Workflow = require("@saltcorn/data/models/workflow");
const { localeDateTime } = require("@saltcorn/markup");
const {
div,
script,
domReady,
pre,
code,
input,
h4,
style,
h5,
button,
text_attr,
i,
p,
span,
small,
form,
textarea,
} = require("@saltcorn/markup/tags");
const { getState } = require("@saltcorn/data/db/state");
const {
getCompletion,
getPromptFromTemplate,
incompleteCfgMsg,
fieldProperties,
} = require("./common");
const MarkdownIt = require("markdown-it"),
md = new MarkdownIt();
const configuration_workflow = (req) =>
new Workflow({
steps: [
{
name: req.__("Prompt"),
form: async (context) => {
return new Form({
fields: [
{
name: "sys_prompt",
label: "System prompt",
sublabel: "Additional information for the system prompt",
type: "String",
fieldview: "textarea",
},
],
});
},
},
{
name: req.__("Tables"),
form: async (context) => {
const tables = await Table.find({});
const show_view_opts = {};
const list_view_opts = {};
for (const t of tables) {
const views = await View.find({
table_id: t.id,
viewtemplate: "Show",
});
show_view_opts[t.name] = views.map((v) => v.name);
const lviews = await View.find_table_views_where(
t.id,
({ state_fields, viewrow }) =>
viewrow.viewtemplate !== "Edit" &&
state_fields.every((sf) => !sf.required)
);
list_view_opts[t.name] = lviews.map((v) => v.name);
}
return new Form({
fields: [
new FieldRepeat({
name: "tables",
label: "Tables",
fields: [
{
name: "table_name",
label: "Table",
sublabel:
"Only tables with a description can be enabled for access",
type: "String",
required: true,
attributes: { options: tables.map((a) => a.name) },
},
{
name: "show_view",
label: "Show view",
type: "String",
attributes: {
calcOptions: ["table_name", show_view_opts],
},
},
{
name: "list_view",
label: "List view",
type: "String",
attributes: {
calcOptions: ["table_name", list_view_opts],
},
},
{
name: "exclude_fields",
label: "Exclude fields",
sublabel:
"Exclude fields from the chat context. Comma-separated list.",
type: "String",
},
],
}),
],
});
},
},
{
name: req.__("Actions"),
form: async (context) => {
const actions = (await Trigger.find({})).filter(
(action) => action.description
);
const hasTable = actions.filter((a) => a.table_id).map((a) => a.name);
const confirm_view_opts = {};
for (const a of actions) {
if (!a.table_id) continue;
const views = await View.find({ table_id: a.table_id });
confirm_view_opts[a.name] = views.map((v) => v.name);
}
return new Form({
fields: [
new FieldRepeat({
name: "actions",
label: "Actions",
fields: [
{
name: "trigger_name",
label: "Action",
sublabel: "Only actions with a description can be enabled",
type: "String",
required: true,
attributes: { options: actions.map((a) => a.name) },
},
/*{ name: "confirm", label: "User confirmation", type: "Bool" },
{
name: "confirm_view",
label: "Confirm view",
type: "String",
showIf: { confirm: true, trigger_name: hasTable },
attributes: {
calcOptions: ["trigger_name", confirm_view_opts],
},
},*/
],
}),
],
});
},
},
],
});
const get_state_fields = () => [];
const run = async (table_id, viewname, config, state, { res, req }) => {
const prevRuns = (
await WorkflowRun.find(
{ trigger_id: null, started_by: req.user?.id },
{ orderBy: "started_at", orderDesc: true, limit: 30 }
)
).filter((r) => r.context.interactions && r.context.copilot === viewname);
const cfgMsg = incompleteCfgMsg();
if (cfgMsg) return cfgMsg;
let runInteractions = "";
if (state.run_id) {
const run = prevRuns.find((r) => r.id == state.run_id);
const interactMarkups = [];
for (const interact of run.context.interactions) {
switch (interact.role) {
case "user":
interactMarkups.push(
div(
{ class: "interaction-segment" },
span({ class: "badge bg-secondary" }, "You"),
md.render(interact.content)
)
);
break;
case "assistant":
case "system":
if (interact.tool_calls) {
if (interact.content) {
interactMarkups.push(
div(
{ class: "interaction-segment" },
span({ class: "badge bg-secondary" }, "Copilot"),
typeof interact.content === "string"
? md.render(interact.content)
: interact.content
)
);
}
for (const tool_call of interact.tool_calls) {
const action = config.actions.find(
(a) => a.trigger_name === tool_call.function.name
);
if (action) {
const row = JSON.parse(tool_call.function.arguments);
if (Object.keys(row || {}).length)
interactMarkups.push(
wrapSegment(
wrapCard(
action.trigger_name,
pre(JSON.stringify(row, null, 2))
),
"Copilot"
)
);
} else if (tool_call.function.name === "TableQuery") {
const query = JSON.parse(tool_call.function.arguments);
const queryText = query.sql_id_query
? query.sql_id_query
: JSON.stringify(query, null, 2);
interactMarkups.push(
wrapSegment(
wrapCard("Query " + query.table_name, pre(queryText)),
"Copilot"
)
);
}
}
} else
interactMarkups.push(
div(
{ class: "interaction-segment" },
span({ class: "badge bg-secondary" }, "Copilot"),
typeof interact.content === "string"
? md.render(interact.content)
: interact.content
)
);
break;
case "tool":
if (interact.name === "TableQuery") {
const tool_call = run.context.interactions
.map(
(i) =>
i.tool_calls &&
i.tool_calls.find((tc) => tc.id === interact.tool_call_id)
)
.filter(Boolean)[0];
if (tool_call) {
const args = JSON.parse(tool_call.function.arguments);
const table = Table.findOne(args.table_name);
interactMarkups.push(
await renderQueryInteraction(
table,
JSON.parse(interact.content),
config,
req
)
);
}
} else if (interact.content !== "Action run") {
let markupContent;
try {
markupContent = JSON.stringify(
JSON.parse(interact.content),
null,
2
);
} catch {
markupContent = interact.content;
}
interactMarkups.push(
wrapSegment(
wrapCard(interact.name, pre(markupContent)),
"Copilot"
)
);
}
break;
}
}
runInteractions = interactMarkups.join("");
}
const input_form = form(
{
onsubmit: `event.preventDefault();spin_send_button();view_post('${viewname}', 'interact', $(this).serialize(), processCopilotResponse);return false;`,
class: "form-namespace copilot mt-2",
method: "post",
},
input({
type: "hidden",
name: "_csrf",
value: req.csrfToken(),
}),
input({
type: "hidden",
class: "form-control ",
name: "run_id",
value: state.run_id ? +state.run_id : undefined,
}),
div(
{ class: "copilot-entry" },
textarea({
class: "form-control",
name: "userinput",
"data-fieldname": "userinput",
placeholder: "How can I help you?",
id: "inputuserinput",
rows: "3",
autofocus: true,
}),
span(
{ class: "submit-button p-2", onclick: "$('form.copilot').submit()" },
i({ id: "sendbuttonicon", class: "far fa-paper-plane" })
)
)
/*i(
small(
"Skills you can request: " +
actionClasses.map((ac) => ac.title).join(", ")
)
)*/
);
return {
widths: [3, 9],
gx: 3,
besides: [
{
type: "container",
contents: div(
div(
{
class: "d-flex justify-content-between align-middle mb-2",
},
h5("Sessions"),
button(
{
type: "button",
class: "btn btn-secondary btn-sm py-0",
style: "font-size: 0.9em;height:1.5em",
onclick: "unset_state_field('run_id')",
title: "New session",
},
i({ class: "fas fa-redo fa-sm" })
)
),
prevRuns.map((run) =>
div(
{
onclick: `set_state_field('run_id',${run.id})`,
class: "prevcopilotrun border p-2",
},
localeDateTime(run.started_at),
p(
{ class: "prevrun_content" },
run.context.interactions[0]?.content
)
)
)
),
},
{
type: "container",
contents: div(
{ class: "card" },
div(
{ class: "card-body" },
script({
src: `/static_assets/${db.connectObj.version_tag}/mermaid.min.js`,
}),
script(
{ type: "module" },
`mermaid.initialize({securityLevel: 'loose'${
getState().getLightDarkMode(req.user) === "dark"
? ",theme: 'dark',"
: ""
}});`
),
div({ id: "copilotinteractions" }, runInteractions),
input_form,
style(
`div.interaction-segment:not(:first-child) {border-top: 1px solid #e7e7e7; }
div.interaction-segment {padding-top: 5px;padding-bottom: 5px;}
div.interaction-segment p {margin-bottom: 0px;}
div.interaction-segment div.card {margin-top: 0.5rem;}
div.prevcopilotrun:hover {cursor: pointer; background-color: var(--tblr-secondary-bg-subtle, var(--bs-secondary-bg-subtle, gray));}
.copilot-entry .submit-button:hover { cursor: pointer}
.copilot-entry .submit-button {
position: relative;
top: -1.8rem;
left: 0.1rem;
}
.copilot-entry {margin-bottom: -1.25rem; margin-top: 1rem;}
p.prevrun_content {
white-space: nowrap;
overflow: hidden;
margin-bottom: 0px;
display: block;
text-overflow: ellipsis;}`
),
script(`function processCopilotResponse(res) {
$("#sendbuttonicon").attr("class","far fa-paper-plane");
const $runidin= $("input[name=run_id")
if(res.run_id && (!$runidin.val() || $runidin.val()=="undefined"))
$runidin.val(res.run_id);
const wrapSegment = (html, who) => '<div class="interaction-segment"><span class="badge bg-secondary">'+who+'</span>'+html+'</div>'
$("#copilotinteractions").append(wrapSegment('<p>'+$("textarea[name=userinput]").val()+'</p>', "You"))
$("textarea[name=userinput]").val("")
if(res.response)
$("#copilotinteractions").append(res.response)
}
function restore_old_button_elem(btn) {
const oldText = $(btn).data("old-text");
btn.html(oldText);
btn.css({ width: "" }).prop("disabled", false);
btn.removeData("old-text");
}
function processExecuteResponse(res) {
const btn = $("#exec-"+res.fcall_id)
restore_old_button_elem($("#exec-"+res.fcall_id))
btn.prop('disabled', true);
btn.html('<i class="fas fa-check me-1"></i>Applied')
btn.removeClass("btn-primary")
btn.addClass("btn-secondary")
if(res.postExec) {
$('#postexec-'+res.fcall_id).html(res.postExec)
}
}
function submitOnEnter(event) {
if (event.which === 13) {
if (!event.repeat) {
const newEvent = new Event("submit", {cancelable: true});
event.target.form.dispatchEvent(newEvent);
}
event.preventDefault(); // Prevents the addition of a new line in the text field
}
}
document.getElementById("inputuserinput").addEventListener("keydown", submitOnEnter);
function spin_send_button() {
$("#sendbuttonicon").attr("class","fas fa-spinner fa-spin");
}
`)
)
),
},
],
};
};
const getCompletionArguments = async (config) => {
let tools = [];
const sysPrompts = [];
let properties = {};
const tableNames = (config?.tables || []).map((t) => t.table_name);
properties.table_name = {
type: "string",
enum: tableNames,
description: `Which table is this query from. Every query has to select rows from one table, even if it is based on joins from different tables`,
};
properties.sql_id_query = {
type: "string",
description: `An SQL query for this table's primary keys. This must select only the primary keys (even if the user wants a count), for example SELECT ${
tableNames[0][0]
}."${Table.findOne(tableNames[0]).pk_name}" from "${tableNames[0]}" ${
tableNames[0][0]
} JOIN ... where... Use this to join other tables in the database.`,
};
properties.is_count = {
type: "boolean",
description: `Is the only desired output a count? Make this true if the user wants a count of rows`,
};
tools.push({
type: "function",
function: {
name: "TableQuery",
description: `Query a table and show the results to the user in a grid format`,
parameters: {
type: "object",
required: ["table_name", "sql_id_query", "is_count"],
properties,
},
},
});
for (const action of config?.actions || []) {
let properties = {};
const trigger = Trigger.findOne({ name: action.trigger_name });
if (trigger.table_id) {
const table = Table.findOne({ id: trigger.table_id });
table.fields
.filter((f) => !f.primary_key)
.forEach((field) => {
properties[field.name] = {
description: field.label + " " + field.description || "",
...fieldProperties(field),
};
});
}
tools.push({
type: "function",
function: {
name: action.trigger_name,
description: trigger.description,
parameters: {
type: "object",
//required: ["action_javascript_code", "action_name"],
properties,
},
},
});
}
const tables = (await Table.find({})).filter(
(t) => !t.external && !t.provider_name
);
const schemaPrefix = db.getTenantSchemaPrefix();
const systemPrompt =
"You are helping users retrieve information and perform actions on a relational database" +
config.sys_prompt +
`
If you are generating SQL, Your database the following tables in PostgreSQL:
` +
tables
.map(
(t) => `CREATE TABLE "${t.name}" (${
t.description
? `
/* ${t.description} */`
: ""
}
${t.fields
.map(
(f) =>
` "${f.name}" ${
f.primary_key && f.type?.name === "Integer"
? "SERIAL PRIMARY KEY"
: f.sql_type.replace(schemaPrefix, "")
}`
)
.join(",\n")}
)`
)
.join(";\n\n") +
`
Use the TableQuery tool if the user asks to see, find or count or otherwise access rows from a table that matches what the user is looking for, or if
the user is asking for a summary or inference from such rows. The TableQuery query is parametrised by a SQL SELECT query which
selects primary key values from the specified table. You can join other tables or use complex logic in the WHERE clause, but you must
always return porimary key values from the specified table.
`;
//console.log("sysprompt", systemPrompt);
if (tools.length === 0) tools = undefined;
return { tools, systemPrompt };
};
/*
build a workflow that asks the user for their name and age
*/
const interact = async (table_id, viewname, config, body, { req, res }) => {
const { userinput, run_id } = body;
let run;
if (!run_id || run_id === "undefined")
run = await WorkflowRun.create({
status: "Running",
started_by: req.user?.id,
context: {
copilot: viewname,
implemented_fcall_ids: [],
interactions: [{ role: "user", content: userinput }],
funcalls: {},
},
});
else {
run = await WorkflowRun.findOne({ id: +run_id });
await addToContext(run, {
interactions: [{ role: "user", content: userinput }],
});
}
return await process_interaction(run, userinput, config, req);
};
const renderQueryInteraction = async (table, result, config, req) => {
if (typeof result === "number")
return wrapSegment(
wrapCard(
"Query " + table?.name || "",
//div("Query: ", code(JSON.stringify(query))),
`${result}`
),
"Copilot"
);
if (result.length === 0)
return wrapSegment(
wrapCard(
"Query " + table?.name || "",
//div("Query: ", code(JSON.stringify(query))),
"No rows found"
),
"Copilot"
);
const tableCfg = config.tables.find((t) => t.table_name === table.name);
let viewRes = "";
if (result.length === 1) {
const view = View.findOne({ name: tableCfg.show_view });
if (view) {
viewRes = await view.run(
{ [table.pk_name]: result[0][table.pk_name] },
{ req }
);
} else viewRes = pre(JSON.stringify(result[0], null, 2));
} else {
const view = View.findOne({ name: tableCfg.list_view });
if (view) {
viewRes = await view.run(
{ [table.pk_name]: { in: result.map((r) => r[table.pk_name]) } },
{ req }
);
} else viewRes = pre(JSON.stringify(result, null, 2));
}
return wrapSegment(
wrapCard(
"Query " + table.name,
//div("Query: ", code(JSON.stringify(query))),
viewRes
),
"Copilot"
);
};
const process_interaction = async (
run,
input,
config,
req,
prevResponses = []
) => {
const complArgs = await getCompletionArguments(config);
complArgs.chat = run.context.interactions;
//complArgs.debugResult = true;
//console.log(complArgs);
console.log("complArgs", JSON.stringify(complArgs, null, 2));
const answer = await getState().functions.llm_generate.run(input, complArgs);
console.log("answer", answer);
await addToContext(run, {
interactions:
typeof answer === "object" && answer.tool_calls
? [
{
role: "assistant",
tool_calls: answer.tool_calls,
content: answer.content,
},
]
: [{ role: "assistant", content: answer }],
});
const responses = [];
if (typeof answer === "object" && answer.tool_calls) {
if (answer.content)
responses.push(wrapSegment(md.render(answer.content), "Copilot"));
//const actions = [];
let hasResult = false;
for (const tool_call of answer.tool_calls) {
console.log("call function", tool_call.function);
await addToContext(run, {
funcalls: { [tool_call.id]: tool_call.function },
});
const action = config.actions.find(
(a) => a.trigger_name === tool_call.function.name
);
console.log({ action });
if (action) {
const trigger = Trigger.findOne({ name: action.trigger_name });
const row = JSON.parse(tool_call.function.arguments);
if (Object.keys(row || {}).length)
responses.push(
wrapSegment(
wrapCard(action.trigger_name, pre(JSON.stringify(row, null, 2))),
"Copilot"
)
);
const result = await trigger.runWithoutRow({ user: req.user, row });
console.log("ran trigger with result", {
name: trigger.name,
row,
result,
});
if (
(typeof result === "object" && Object.keys(result || {}).length) ||
typeof result === "string"
) {
responses.push(
wrapSegment(
wrapCard(
action.trigger_name + " result",
pre(JSON.stringify(result, null, 2))
),
"Copilot"
)
);
hasResult = true;
}
await addToContext(run, {
interactions: [
{
role: "tool",
tool_call_id: tool_call.id,
name: tool_call.function.name,
content:
result && typeof result !== "string"
? JSON.stringify(result)
: result || "Action run",
},
],
});
} else if (tool_call.function.name == "TableQuery") {
const query = JSON.parse(tool_call.function.arguments);
const table = Table.findOne({
name: query.table_name,
});
const tableCfg = config.tables.find((t) => t.table_name === table.name);
const is_sqlite = db.isSQLite;
const client = is_sqlite ? db : await db.getClient();
await client.query(`BEGIN;`);
if (!is_sqlite) {
await client.query(
`SET LOCAL search_path TO "${db.getTenantSchema()}";`
);
await client.query(
`SET SESSION CHARACTERISTICS AS TRANSACTION READ ONLY;`
);
}
const { rows } = await client.query(query.sql_id_query);
await client.query(`ROLLBACK;`);
if (!is_sqlite) client.release(true);
let result;
const id_query = {
[table.pk_name]: { in: rows.map((r) => r[table.pk_name]) },
};
if (query.is_count) {
const role = req.user?.role_id || 100;
if (role <= table.min_role_read) {
result = await table.countRows(id_query);
} else result = "Not authorized";
} else {
result = await table.getRows(id_query, {
forUser: req.user,
forPublic: !req.user,
});
if (tableCfg.exclude_fields) {
const fields = tableCfg.exclude_fields
.split(",")
.map((s) => s.trim());
fields.forEach((f) => {
result.forEach((r) => {
delete r[f];
});
});
}
}
responses.push(
wrapSegment(
wrapCard(
"Query " + tool_call.function.name.replace("Query", ""),
pre(query.sql_id_query)
),
"Copilot"
)
);
await addToContext(run, {
interactions: [
{
role: "tool",
tool_call_id: tool_call.id,
name: tool_call.function.name,
content: JSON.stringify(result),
},
],
});
responses.push(
await renderQueryInteraction(table, result, config, req)
);
hasResult = true;
}
}
if (hasResult)
return await process_interaction(run, "", config, req, [
...prevResponses,
...responses,
]);
} else responses.push(wrapSegment(md.render(answer), "Copilot"));
return {
json: {
success: "ok",
response: [...prevResponses, ...responses].join(""),
run_id: run.id,
},
};
};
const wrapSegment = (html, who) =>
'<div class="interaction-segment"><span class="badge bg-secondary">' +
who +
"</span>" +
html +
"</div>";
const wrapCard = (title, ...inners) =>
span({ class: "badge bg-info ms-1" }, title) +
div(
{ class: "card mb-3 bg-secondary-subtle" },
div({ class: "card-body" }, inners)
);
const wrapAction = (
inner_markup,
viewname,
tool_call,
actionClass,
implemented,
run
) =>
wrapCard(
actionClass.title,
inner_markup + implemented
? button(
{
type: "button",
class: "btn btn-secondary d-block mt-3 float-end",
disabled: true,
},
i({ class: "fas fa-check me-1" }),
"Applied"
)
: button(
{
type: "button",
id: "exec-" + tool_call.id,
class: "btn btn-primary d-block mt-3 float-end",
onclick: `press_store_button(this, true);view_post('${viewname}', 'execute', {fcall_id: '${tool_call.id}', run_id: ${run.id}}, processExecuteResponse)`,
},
"Apply"
) + div({ id: "postexec-" + tool_call.id })
);
const addToContext = async (run, newCtx) => {
if (run.addToContext) return await run.addToContext(newCtx);
let changed = true;
Object.keys(newCtx).forEach((k) => {
if (Array.isArray(run.context[k])) {
if (!Array.isArray(newCtx[k]))
throw new Error("Must be array to append to array");
run.context[k].push(...newCtx[k]);
changed = true;
} else if (typeof run.context[k] === "object") {
if (typeof newCtx[k] !== "object")
throw new Error("Must be object to append to object");
Object.assign(run.context[k], newCtx[k]);
changed = true;
} else {
run.context[k] = newCtx[k];
changed = true;
}
});
if (changed) await run.update({ context: run.context });
};
module.exports = {
name: "User Copilot",
configuration_workflow,
display_state_form: false,
get_state_fields,
tableless: true,
run,
routes: { interact },
};