sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
27 lines • 992 B
TypeScript
import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { CancelOrdersReturnType } from "../../../node_modules/citrex-sdk/lib/types.js";
import { z } from "zod";
declare const CitrexCancelOpenOrdersForProductInputSchema: z.ZodObject<{
productId: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
productId: number;
}, {
productId: number;
}>;
export declare class SeiCitrexCancelOpenOrdersForProductTool extends StructuredTool<typeof CitrexCancelOpenOrdersForProductInputSchema> {
private readonly seiKit;
name: string;
description: string;
schema: z.ZodObject<{
productId: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
productId: number;
}, {
productId: number;
}>;
constructor(seiKit: SeiAgentKit);
_call(input: z.infer<typeof CitrexCancelOpenOrdersForProductInputSchema>): Promise<CancelOrdersReturnType | undefined>;
}
export {};
//# sourceMappingURL=cancelOpenOrdersForProduct.d.ts.map