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.

17 lines (15 loc) 624 B
import { z } from 'zod'; import { BaseHederaQueryTool, BaseHederaQueryToolParams } from '../common/base-hedera-query-tool'; declare const GetNetworkInfoZodSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; /** * Tool for retrieving network information. */ export declare class HederaGetNetworkInfoTool extends BaseHederaQueryTool<typeof GetNetworkInfoZodSchema> { name: string; description: string; specificInputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; namespace: string; constructor(params: BaseHederaQueryToolParams); protected executeQuery(): Promise<unknown>; } export {};