20 lines
432 B
Dart
20 lines
432 B
Dart
import 'package:didvan/models/ai/bots_model.dart';
|
|
import 'package:didvan/models/ai/chats_model.dart';
|
|
|
|
class AiChatArgs {
|
|
final BotsModel bot;
|
|
final ChatsModel? chat;
|
|
final Prompts? prompts;
|
|
final bool? attach;
|
|
final String? assistantsName;
|
|
final List<BotsModel>? isTool;
|
|
|
|
AiChatArgs(
|
|
{required this.bot,
|
|
this.chat,
|
|
this.prompts,
|
|
this.attach,
|
|
this.isTool,
|
|
this.assistantsName});
|
|
}
|