create final nodes

This commit is contained in:
William Jeynes
2026-01-28 22:03:21 +00:00
parent c6416622e4
commit a1373da891
8 changed files with 82 additions and 64 deletions
+13
View File
@@ -0,0 +1,13 @@
import { GraphNode } from "@langchain/langgraph";
import { MessagesState } from "../state";
import { AIMessage } from "@langchain/core/messages";
export function createDummyModelNode(addition): GraphNode<typeof MessagesState> {
return async (state) => {
//TODO: call AI model with collected data
return {
messages: [new AIMessage(addition + " : " + state.messages.at(-1)?.content)]
};
};
}