zyc 689fa8936b Integrate Volcengine realtime voice + Live2D mouth driving
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-14 15:39:23 +08:00

16 lines
297 B
Dart

enum ChatRole { user, assistant }
class ChatMessage {
ChatRole role;
String text;
bool isFinal;
final DateTime createdAt;
ChatMessage({
required this.role,
required this.text,
this.isFinal = false,
DateTime? createdAt,
}) : createdAt = createdAt ?? DateTime.now();
}