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