UNPKG

@hashgraphonline/conversational-agent

Version:

Hashgraph Online conversational AI agent implementing HCS-10 communication, HCS-2 registries, and content inscription on Hedera. https://hol.org

20 lines (19 loc) 770 B
/** * Common error messages and user feedback strings */ export declare const ERROR_MESSAGES: { readonly TOO_MANY_REQUESTS: "Too many requests. Please wait a moment and try again."; readonly RATE_LIMITED: "I'm receiving too many requests right now. Please wait a moment and try again."; readonly SYSTEM_ERROR: "System error occurred"; readonly INVALID_INPUT: "Invalid input provided"; readonly NETWORK_ERROR: "Network error occurred"; }; /** * Common success and status messages */ export declare const STATUS_MESSAGES: { readonly OPERATION_SUCCESSFUL: "Operation completed successfully"; readonly PROCESSING: "Processing your request..."; readonly READY: "Ready to process requests"; readonly INITIALIZING: "Initializing..."; };