mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
8 lines
456 B
JavaScript
8 lines
456 B
JavaScript
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
|
|
}
|
|
} |