Files
solana-agent-kit/src/index.ts
2024-11-17 23:55:25 +07:00

7 lines
261 B
TypeScript

import { SolanaAgentKit } from './agent'; // Move the SolanaAgentKit class to src/agent.ts
import { createSolanaTools } from './langchain';
export { SolanaAgentKit, createSolanaTools };
// Optional: Export types that users might need
export * from './types';