mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 09:10:13 +01:00
a5bb77f97a
V1 of agent support via built-in `@agent` that can be invoked alongside normal workspace RAG chat.
38 lines
857 B
JavaScript
38 lines
857 B
JavaScript
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
/**
|
|
* Plugin to save chat history to a json file
|
|
*/
|
|
const fileHistory = {
|
|
name: "file-history-plugin",
|
|
startupConfig: {
|
|
params: {},
|
|
},
|
|
plugin: function ({
|
|
filename = `history/chat-history-${new Date().toISOString()}.json`,
|
|
} = {}) {
|
|
return {
|
|
name: this.name,
|
|
setup(aibitat) {
|
|
const folderPath = path.dirname(filename);
|
|
// get path from filename
|
|
if (folderPath) {
|
|
fs.mkdirSync(folderPath, { recursive: true });
|
|
}
|
|
|
|
aibitat.onMessage(() => {
|
|
const content = JSON.stringify(aibitat.chats, null, 2);
|
|
fs.writeFile(filename, content, (err) => {
|
|
if (err) {
|
|
console.error(err);
|
|
}
|
|
});
|
|
});
|
|
},
|
|
};
|
|
},
|
|
};
|
|
|
|
module.exports = { fileHistory };
|