All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2m1s
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
export interface ChatMessage {
|
|
id: string;
|
|
role: 'user' | 'ai';
|
|
content: string;
|
|
timestamp: number;
|
|
completed: boolean;
|
|
}
|