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