@io-maana/q-assistant-client
Version:
JavaScript package to streamline communication between an assistant and the Maana Q Assistant API.
19 lines (15 loc) • 395 B
JavaScript
require("core-js/modules/es.object.define-property");
require("core-js/modules/es.object.freeze");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.AssistantState = void 0;
/**
* The different states that the assistant can be in.
*/
var AssistantState = Object.freeze({
WORKING: 'WORKING',
IDLE: 'IDLE'
});
exports.AssistantState = AssistantState;
;