mirror of
https://github.com/d0zingcat/solana-agent-kit.git
synced 2026-05-17 15:10:27 +00:00
10 lines
307 B
TypeScript
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")];
|