Files
solana-agent-kit/examples/agent-kit-langgraph/index.ts
Deepak 45d5ad21a7 init
2024-12-27 14:14:17 +05:30

7 lines
195 B
TypeScript

import { StateGraph } from "@langchain/langgraph";
import { solanaAgentState } from "./utils/state";
const workflow = new StateGraph(solanaAgentState);
export const graph = workflow.compile();