@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) • 349 B
text/typescript
import * as ai from 'ai';
import z from 'zod';
declare const suiWalletBalanceTool: ai.Tool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {
balances: Record<string, string>;
}> & {
execute: (args: {}, options: ai.ToolExecutionOptions) => PromiseLike<{
balances: Record<string, string>;
}>;
};
export { suiWalletBalanceTool };