Files
solana-agent-kit/examples/agent-kit-langgraph/src/helper/examples.ts
Deepak a537716d99 fin
2024-12-27 17:41:12 +05:30

10 lines
307 B
TypeScript

import { HumanMessage } from "@langchain/core/messages";
export const generalQuestion = [
new HumanMessage("Who is the president of Ecuador?"),
];
export const solanaReadQuery = [new HumanMessage("what is the price of SOL")];
export const solanaWriteQuery = [new HumanMessage("swap 0.1 usdc to sol")];