UNPKG

@hashgraphonline/hedera-agent-kit

Version:

Build LLM-powered applications that interact with the Hedera Network. Create conversational agents that can understand user requests in natural language and execute Hedera transactions, or build backend systems that leverage AI for on-chain operations.

40 lines (38 loc) 1.46 kB
import { z } from 'zod'; import { BaseHederaTransactionTool, BaseHederaTransactionToolParams } from '../common/base-hedera-transaction-tool'; import { BaseServiceBuilder } from '../../../builders/base-service-builder'; declare const CreateFileZodSchemaCore: z.ZodObject<{ contents: z.ZodString; keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; memo: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { contents: string; keys?: string[] | undefined; memo?: string | undefined; }, { contents: string; keys?: string[] | undefined; memo?: string | undefined; }>; export declare class HederaCreateFileTool extends BaseHederaTransactionTool<typeof CreateFileZodSchemaCore> { name: string; description: string; specificInputSchema: z.ZodObject<{ contents: z.ZodString; keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; memo: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { contents: string; keys?: string[] | undefined; memo?: string | undefined; }, { contents: string; keys?: string[] | undefined; memo?: string | undefined; }>; namespace: string; constructor(params: BaseHederaTransactionToolParams); protected getServiceBuilder(): BaseServiceBuilder; protected callBuilderMethod(builder: BaseServiceBuilder, specificArgs: z.infer<typeof CreateFileZodSchemaCore>): Promise<void>; } export {};