Files
solana-agent-kit/src/index.ts
2025-01-01 03:37:56 +05:30

12 lines
314 B
TypeScript

import { SolanaAgentKit } from "./agent";
import { createSolanaTools } from "./langchain";
export { SolanaAgentKit, createSolanaTools };
// Optional: Export types that users might need
export * from "./types";
// Export action system
export { ACTIONS } from "./actions";
export * from "./utils/actionExecutor";