first commit

This commit is contained in:
Ramnique Singh 2025-10-28 13:17:06 +05:30
parent 476654af80
commit 6014437479
20 changed files with 2231 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import { Node, NodeOutputT } from "../nodes/node.js";
export class GetDate implements Node {
async* execute(): NodeOutputT {
yield {
type: "text-start",
};
yield {
type: "text-delta",
delta: 'The current date is ' + new Date().toISOString(),
};
yield {
type: "text-end",
};
}
}