tinyagent-ts
Version:
Modern TypeScript framework for building AI agents with pluggable tools and ReAct reasoning
11 lines (10 loc) • 443 B
TypeScript
import { z } from 'zod';
import { Tool } from '../final-answer.tool';
export declare const UuidSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export type UuidArgs = z.infer<typeof UuidSchema>;
export declare class UuidTool implements Tool<UuidArgs, string> {
readonly name = "uuid";
readonly description = "Generate a random UUID";
readonly schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
forward(): string;
}