UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

24 lines 847 B
import { StructuredTool } from "langchain/tools"; import { SeiAgentKit } from "../../agent"; import { TradeHistoryReturnType } from "citrex-sdk/types"; import { z } from "zod"; declare const CitrexGetTradeHistoryInputSchema: z.ZodObject<{ productSymbol: z.ZodString; quantity: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { productSymbol: string; quantity?: number | undefined; }, { productSymbol: string; quantity?: number | undefined; }>; export declare class SeiCitrexGetTradeHistoryTool extends StructuredTool { private readonly seiKit; name: string; description: string; schema: any; constructor(seiKit: SeiAgentKit); _call(input: z.infer<typeof CitrexGetTradeHistoryInputSchema>): Promise<TradeHistoryReturnType | undefined>; } export {}; //# sourceMappingURL=getTradeHistory.d.ts.map