Spaces:
Paused
Paused
File size: 4,598 Bytes
8d1819a | 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 | import { createStore } from "/js/AlpineStore.js";
import * as shortcuts from "/js/shortcuts.js";
import { store as fileBrowserStore } from "/components/modals/file-browser/file-browser-store.js";
const model = {
paused: false,
init() {
console.log("Input store initialized");
// Event listeners are now handled via Alpine directives in the component
},
async sendMessage() {
// Delegate to the global function
if (globalThis.sendMessage) {
await globalThis.sendMessage();
}
},
adjustTextareaHeight() {
const chatInput = document.getElementById("chat-input");
if (chatInput) {
chatInput.style.height = "auto";
chatInput.style.height = chatInput.scrollHeight + "px";
}
},
async pauseAgent(paused) {
const prev = this.paused;
this.paused = paused;
try {
const context = globalThis.getContext?.();
if (!globalThis.sendJsonData)
throw new Error("sendJsonData not available");
await globalThis.sendJsonData("/pause", { paused, context });
} catch (e) {
this.paused = prev;
if (globalThis.toastFetchError) {
globalThis.toastFetchError("Error pausing agent", e);
}
}
},
async nudge() {
try {
const context = globalThis.getContext();
await globalThis.sendJsonData("/nudge", { ctxid: context });
} catch (e) {
if (globalThis.toastFetchError) {
globalThis.toastFetchError("Error nudging agent", e);
}
}
},
async loadKnowledge() {
try {
const resp = await shortcuts.callJsonApi("/knowledge_path_get", {
ctxid: shortcuts.getCurrentContextId(),
});
if (!resp.ok) throw new Error("Error getting knowledge path");
const path = resp.path;
// open file browser and wait for it to close
await fileBrowserStore.open(path);
// progress notification
shortcuts.frontendNotification({
type: shortcuts.NotificationType.PROGRESS,
message: "Loading knowledge...",
priority: shortcuts.NotificationPriority.NORMAL,
displayTime: 999,
group: "knowledge_load",
frontendOnly: true,
});
// then reindex knowledge
await globalThis.sendJsonData("/knowledge_reindex", {
ctxid: shortcuts.getCurrentContextId(),
});
// finished notification
shortcuts.frontendNotification({
type: shortcuts.NotificationType.SUCCESS,
message: "Knowledge loaded successfully",
priority: shortcuts.NotificationPriority.NORMAL,
displayTime: 2,
group: "knowledge_load",
frontendOnly: true,
});
} catch (e) {
// error notification
shortcuts.frontendNotification({
type: shortcuts.NotificationType.ERROR,
message: "Error loading knowledge",
priority: shortcuts.NotificationPriority.NORMAL,
displayTime: 5,
group: "knowledge_load",
frontendOnly: true,
});
}
},
// previous implementation without projects
async _loadKnowledge() {
const input = document.createElement("input");
input.type = "file";
input.accept = ".txt,.pdf,.csv,.html,.json,.md";
input.multiple = true;
input.onchange = async () => {
try {
const formData = new FormData();
for (let file of input.files) {
formData.append("files[]", file);
}
formData.append("ctxid", globalThis.getContext());
const response = await globalThis.fetchApi("/import_knowledge", {
method: "POST",
body: formData,
});
if (!response.ok) {
if (globalThis.toast)
globalThis.toast(await response.text(), "error");
} else {
const data = await response.json();
if (globalThis.toast) {
globalThis.toast(
"Knowledge files imported: " + data.filenames.join(", "),
"success"
);
}
}
} catch (e) {
if (globalThis.toastFetchError) {
globalThis.toastFetchError("Error loading knowledge", e);
}
}
};
input.click();
},
async browseFiles(path) {
if (!path) {
try {
const resp = await shortcuts.callJsonApi("/chat_files_path_get", {
ctxid: shortcuts.getCurrentContextId(),
});
if (resp.ok) path = resp.path;
} catch (_e) {
console.error("Error getting chat files path", _e);
}
}
await fileBrowserStore.open(path);
},
};
const store = createStore("chatInput", model);
export { store };
|