UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

27 lines 998 B
import { StructuredTool } from "langchain/tools"; import { SeiAgentKit } from "../../agent"; import { ProductReturnType } from "../../../node_modules/citrex-sdk/lib/types.js"; import { z } from "zod"; declare const CitrexGetProductInputSchema: z.ZodObject<{ identifier: z.ZodUnion<[z.ZodNumber, z.ZodString]>; }, "strip", z.ZodTypeAny, { identifier: string | number; }, { identifier: string | number; }>; export declare class SeiCitrexGetProductTool extends StructuredTool<typeof CitrexGetProductInputSchema> { private readonly seiKit; name: string; description: string; schema: z.ZodObject<{ identifier: z.ZodUnion<[z.ZodNumber, z.ZodString]>; }, "strip", z.ZodTypeAny, { identifier: string | number; }, { identifier: string | number; }>; constructor(seiKit: SeiAgentKit); _call(input: z.infer<typeof CitrexGetProductInputSchema>): Promise<ProductReturnType | undefined>; } export {}; //# sourceMappingURL=getProduct.d.ts.map