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? isTool; AiChatArgs( {required this.bot, this.chat, this.prompts, this.attach, this.isTool, this.assistantsName}); }