daggerai
Version:
A simple and powerful Typescript based agent framework to help businesses thrive in the AI Agent revolution.
17 lines • 361 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Node = void 0;
class Node {
id = '';
graphId = '';
type = '';
// controls the order of execution
adjacentTo = [];
adjancentFrom = [];
output = null;
nodeOutput() {
return '';
}
}
exports.Node = Node;
//# sourceMappingURL=node.js.map