sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
19 lines • 679 B
TypeScript
import { SeiAgentKit } from "../../agent";
import { TwitterAccountMentionsSchema } from "../../tools";
import { StructuredTool } from "langchain/tools";
import { z } from "zod";
export declare class SeiGetAccountMentionsTool extends StructuredTool<typeof TwitterAccountMentionsSchema> {
private readonly seiKit;
name: string;
description: string;
schema: z.ZodObject<{
userId: z.ZodString;
}, "strip", z.ZodTypeAny, {
userId: string;
}, {
userId: string;
}>;
constructor(seiKit: SeiAgentKit);
_call(args: z.infer<typeof TwitterAccountMentionsSchema>): Promise<string>;
}
//# sourceMappingURL=getAccountMentions.d.ts.map