The Responder object
{
"id": "XWew9NlZvAxkazwAnv7x",
"name": "Text Summarizer",
"description" : "Generate a summary of the main points from a given text",
"enabled": true,
"systemMessageTemplate": "Summarize the following text. {{input.text}}",
"model": {
"name": "gpt-4o-2024-05-13",
"parameters": {
"temperature": 0.3,
}
},
"mode": "json",
"schemas": {
"input": {
"type": "object",
"properties": { "text": {"type": "string"} },
"required": ["input"]
},
"output": {
"type": "object",
"properties": { "summary": {"type": "string"} },
"required": ["output"]
}
},
"createdAt": "2024-08-20T15:14:54Z",
"updatedAt": "2024-08-20T15:14:54Z"
}Attributes
Last updated