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