@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) • 675 B
text/typescript
/**
* Common error messages and user feedback strings
*/
export const ERROR_MESSAGES = {
TOO_MANY_REQUESTS: 'Too many requests. Please wait a moment and try again.',
RATE_LIMITED: "I'm receiving too many requests right now. Please wait a moment and try again.",
SYSTEM_ERROR: 'System error occurred',
INVALID_INPUT: 'Invalid input provided',
NETWORK_ERROR: 'Network error occurred',
} as const;
/**
* Common success and status messages
*/
export const STATUS_MESSAGES = {
OPERATION_SUCCESSFUL: 'Operation completed successfully',
PROCESSING: 'Processing your request...',
READY: 'Ready to process requests',
INITIALIZING: 'Initializing...',
} as const;