Spaces:
Runtime error
Runtime error
| export const API_BASE_URL = import.meta.env.VITE_API_URL || 'http://localhost:8000'; | |
| export const WEBSOCKET_URL = import.meta.env.VITE_WS_URL || 'ws://localhost:8000'; | |
| export const AI_TONES = { | |
| FRIENDLY: 'friendly', | |
| PROFESSIONAL: 'professional', | |
| CASUAL: 'casual', | |
| FORMAL: 'formal' | |
| }; | |
| export const NOTIFICATION_TYPES = { | |
| SUCCESS: 'success', | |
| ERROR: 'error', | |
| INFO: 'info', | |
| WARNING: 'warning' | |
| }; | |
| export const WIDGET_POSITIONS = { | |
| BOTTOM_RIGHT: 'bottom-right', | |
| BOTTOM_LEFT: 'bottom-left', | |
| TOP_RIGHT: 'top-right', | |
| TOP_LEFT: 'top-left' | |
| }; |