sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
13 lines • 533 B
TypeScript
import { SeiAgentKit } from "../../agent";
import { TwitterAccountDetailsSchema } from "../../tools";
import { StructuredTool } from "langchain/tools";
import { z } from "zod";
export declare class SeiGetAccountDetailsTool extends StructuredTool<typeof TwitterAccountDetailsSchema> {
private readonly seiKit;
name: string;
description: string;
schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
constructor(seiKit: SeiAgentKit);
_call(): Promise<string>;
}
//# sourceMappingURL=getAccountDetails.d.ts.map