14 lines
349 B
Dart
14 lines
349 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 List<BotsModel>? isTool;
|
|
|
|
AiChatArgs(
|
|
{required this.bot, this.chat, this.prompts, this.attach, this.isTool});
|
|
}
|