| export interface Message { | |
| id: string; | |
| text: string; | |
| sender: 'user' | 'ai'; | |
| suggestions?: string[]; | |
| } | |
| export interface Review { | |
| id: string; | |
| date: string; | |
| lang: string; | |
| rating: number; | |
| comments: string; | |
| } | |
| export interface Message { | |
| id: string; | |
| text: string; | |
| sender: 'user' | 'ai'; | |
| suggestions?: string[]; | |
| } | |
| export interface Review { | |
| id: string; | |
| date: string; | |
| lang: string; | |
| rating: number; | |
| comments: string; | |
| } | |