UNPKG

@suiware/ai-tools

Version:

Pluggable tools for Vercel AI SDK which allow AI assistants to interact with Sui Network and perform various actions.

13 lines (10 loc) 303 B
import * as ai from 'ai'; import z from 'zod'; declare const suiUnstakeTool: ai.Tool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, { digests: string; }> & { execute: (args: {}, options: ai.ToolExecutionOptions) => PromiseLike<{ digests: string; }>; }; export { suiUnstakeTool };