- SSE streaming chat (real-time token delivery) - Supabase Auth integration (signup, login, JWT) - Multi-app support via app_id (room_decor, music, ecommerce) - Model selection and critic toggle - Conversation management (list, load, delete) - Cancel streaming requests - Full example with auth screen + chat UI
7 lines
175 B
Dart
7 lines
175 B
Dart
/// AI Assistant Flutter client with SSE streaming support.
|
|
library ai_assistant_client;
|
|
|
|
export 'src/client.dart';
|
|
export 'src/models.dart';
|
|
export 'src/stream_parser.dart';
|