UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

16 lines 466 B
import { TwitterPostTweetSchema } from "../../tools"; import { StructuredTool } from "langchain/tools"; export class SeiPostTweetTool extends StructuredTool { seiKit; name = "post_tweet"; description = "Posts a tweet to Twitter"; schema = TwitterPostTweetSchema; constructor(seiKit) { super(); this.seiKit = seiKit; } async _call(args) { return this.seiKit.postTweet(args); } } //# sourceMappingURL=post.js.map