Added functionality to group modules for frontend

This commit is contained in:
2025-11-24 12:53:05 +01:00
parent 05449ad8f2
commit 474e587ff2
2 changed files with 35 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
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
type:"llm", // 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