Implemented the general modular framework.

Added basic modules for the trascription tool Assembly and the Documentation tool ChatGPT
This commit is contained in:
2025-11-03 17:48:29 +01:00
parent 749e44f322
commit b5fe3f3b0c
12 changed files with 942 additions and 0 deletions
View File
+8
View File
@@ -0,0 +1,8 @@
module.exports = {
name:"chatgpt", // Unique name for our function that will later be used to get the function from the map via "mapFunctions.get("example").function()"
type:"document", // value used to differentiate each module to order them in the UI
displayname:"ChatGPT", // The displayname used within the UI
async function(parameter){
// TODO add code to actually send the transcript to ChatGPT and get a response back
}
}