-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathai-command.qml
55 lines (45 loc) · 1.82 KB
/
ai-command.qml
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
import QtQml 2.0
import QOwnNotesTypes 1.0
/**
* This script allows just send a written command to the AI completer to replace the selected text, but showing the differences first.
*/
Script {
/**
* Initializes the custom actions
*/
function init() {
script.registerCustomAction("run-ai-command", "AI Command", "", "network-server-database", true, true, false);
}
/**
* This function is invoked when a custom action is triggered
* in the menu or via button
*
* @param identifier string the identifier defined in registerCustomAction
*/
function customActionInvoked(identifier) {
if (identifier !== "run-ai-command") {
return;
}
let pastCommands = JSON.parse(script.getPersistentVariable('aiCommand/pastCommands', '[]'));
let command = script.inputDialogGetItem("AI Command", "Please enter a command", pastCommands, 0, true);
if (command === '') {
return;
}
// Remove any existing occurrences of command
pastCommands = pastCommands.filter(cmd => cmd !== command);
// Add command to the beginning
pastCommands.unshift(command);
// Trim the array to the last 15 entries
pastCommands = pastCommands.slice(0, 15);
script.setPersistentVariable('aiCommand/pastCommands', JSON.stringify(pastCommands));
const text = script.noteTextEditSelectedText();
const aiResult = script.aiComplete(
"Execute the following command on the Markdown text afterwards, just output the result. " +
command + ":\n\n" + text);
let dialogResult = script.textDiffDialog("AI Command", "Resulting text", text, aiResult);
if (dialogResult === '') {
return;
}
script.noteTextEditWrite(dialogResult);
}
}