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 suiAddressTool: ai.Tool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, { address: string; }> & { execute: (args: {}, options: ai.ToolExecutionOptions) => PromiseLike<{ address: string; }>; }; export { suiAddressTool };