UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

26 lines 749 B
import { StructuredTool } from "langchain/tools"; import { SeiAgentKit } from "../../agent"; import { z } from "zod"; declare const UnstakeInputSchema: z.ZodObject<{ amount: z.ZodString; }, "strip", z.ZodTypeAny, { amount: string; }, { amount: string; }>; export declare class SeiUnstakeTool extends StructuredTool<typeof UnstakeInputSchema> { private readonly seiKit; name: string; description: string; schema: z.ZodObject<{ amount: z.ZodString; }, "strip", z.ZodTypeAny, { amount: string; }, { amount: string; }>; constructor(seiKit: SeiAgentKit); protected _call(input: z.infer<typeof UnstakeInputSchema>): Promise<string>; } export {}; //# sourceMappingURL=unstake.d.ts.map