// Error messages
export const ERROR_MESSAGES = {
  MISSING_PARAMETER: 'Missing required parameter:',
  INVALID_PROVIDER: 'Invalid provider configuration',
  INVALID_MEMORY: 'Invalid memory configuration',
  INVALID_DATABASE: 'Invalid database configuration',
  INVALID_RAG: 'Invalid RAG configuration',
  INVALID_VECTOR_DB: 'Invalid vector database configuration',
  INVALID_TASK: 'Invalid task configuration',
  INVALID_EMBEDDING: 'Invalid embedding configuration',
}; 