xupan e3f81d4f7b
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2m1s
feat:部分功能优化
2026-07-11 15:39:48 +08:00

8 lines
132 B
TypeScript

export interface ChatMessage {
id: string;
role: 'user' | 'ai';
content: string;
timestamp: number;
completed: boolean;
}