sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
21 lines • 767 B
TypeScript
import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { CancelOrdersReturnType } from "citrex-sdk/types";
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 {
private readonly seiKit;
name: string;
description: string;
schema: any;
constructor(seiKit: SeiAgentKit);
_call(input: z.infer<typeof CitrexCancelOpenOrdersForProductInputSchema>): Promise<CancelOrdersReturnType | undefined>;
}
export {};
//# sourceMappingURL=cancelOpenOrdersForProduct.d.ts.map