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