UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

36 lines 1.05 kB
import { StructuredTool } from "langchain/tools"; import { SeiAgentKit } from "../../agent"; import { CancelOrderReturnType } from "citrex-sdk/types"; import { z } from "zod"; declare const CitrexCancelOrdersInputSchema: z.ZodObject<{ orders: z.ZodArray<z.ZodObject<{ orderId: z.ZodString; productId: z.ZodNumber; }, "strip", z.ZodTypeAny, { productId: number; orderId: string; }, { productId: number; orderId: string; }>, "many">; }, "strip", z.ZodTypeAny, { orders: { productId: number; orderId: string; }[]; }, { orders: { productId: number; orderId: string; }[]; }>; export declare class SeiCitrexCancelOrdersTool extends StructuredTool { private readonly seiKit; name: string; description: string; schema: any; constructor(seiKit: SeiAgentKit); _call(input: z.infer<typeof CitrexCancelOrdersInputSchema>): Promise<CancelOrderReturnType[] | undefined>; } export {}; //# sourceMappingURL=cancelOrders.d.ts.map