@sinch/mcp
Version:
Sinch MCP server
18 lines • 458 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PromptResponse = void 0;
class PromptResponse {
constructor(content) {
this.promptResponse = {
role: 'assistant',
content: [
{
type: 'text',
text: content,
}
]
};
}
}
exports.PromptResponse = PromptResponse;
//# sourceMappingURL=types.js.map