UNPKG

cloudonix-js

Version:

A JavaScript library for building and serving Cloudonix Voice Application XML (CXML) documents with support for AI voice agents, media streaming, and advanced telephony features

20 lines (18 loc) 435 B
/** * @file Speech noun implementation for Converse verb * @copyright 2025 Nir Simionovich, nirs@cloudonix.io * @license MIT * @module cloudonix-js/verbs/converseNouns/speech * @description Implements the Speech noun for Converse verb */ 'use strict'; module.exports = { /** * Create a Speech element * @returns {Object} - The Speech element */ create: () => { // This is an empty element return {}; } };