Email / src /graph /conditional-edge.js
lenzcom's picture
Upload folder using huggingface_hub
e706de2 verified
/**
* ConditionalEdge
*
* Conditional routing edge
*
* @module src/graph/conditional-edge.js
*/
export class ConditionalEdge {
constructor(options = {}) {
// TODO: Implement constructor
throw new Error('ConditionalEdge not yet implemented');
}
// TODO: Add methods
}
export default ConditionalEdge;