mirror of
https://github.com/d0zingcat/solana-agent-kit.git
synced 2026-05-20 23:26:44 +00:00
7 lines
195 B
TypeScript
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();
|