sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
21 lines • 723 B
TypeScript
import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { TickerReturnType } from "citrex-sdk/types";
import { z } from "zod";
declare const CitrexGetTickersInputSchema: z.ZodObject<{
symbol: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
symbol?: string | undefined;
}, {
symbol?: string | undefined;
}>;
export declare class SeiCitrexGetTickersTool extends StructuredTool {
private readonly seiKit;
name: string;
description: string;
schema: any;
constructor(seiKit: SeiAgentKit);
_call(input: z.infer<typeof CitrexGetTickersInputSchema>): Promise<TickerReturnType | undefined>;
}
export {};
//# sourceMappingURL=getTickers.d.ts.map