@convo-lang/convo-lang
Version:
The language of AI
5 lines • 414 B
JavaScript
export const allConvoGraphEntityTypeAry = ['node', 'edge', 'input', 'source', 'traverser'];
export const isConvoGraphEntityType = (value) => (allConvoGraphEntityTypeAry.includes(value));
export const allConvoGraphMsgTypeAry = ['node', 'step', 'edge', 'input', 'source', 'graph'];
export const isConvoGraphMsgType = (value) => (allConvoGraphMsgTypeAry.includes(value));
//# sourceMappingURL=convo-graph-types.js.map