sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
13 lines • 472 B
TypeScript
import { SeiAgentKit } from "../../agent";
import { TwitterPostTweetSchema } from "../../tools";
import { StructuredTool } from "langchain/tools";
import { z } from "zod";
export declare class SeiPostTweetTool extends StructuredTool {
private readonly seiKit;
name: string;
description: string;
schema: any;
constructor(seiKit: SeiAgentKit);
_call(args: z.infer<typeof TwitterPostTweetSchema>): Promise<string>;
}
//# sourceMappingURL=post.d.ts.map