feat#add minmax model

This commit is contained in:
limy26
2024-06-12 19:14:09 +08:00
parent 405372d1a7
commit 200cd33a8e
6 changed files with 271 additions and 17 deletions

View File

@@ -64,6 +64,10 @@ def create_bot(bot_type):
elif bot_type == const.MOONSHOT:
from bot.moonshot.moonshot_bot import MoonshotBot
return MoonshotBot()
elif bot_type == const.MiniMax:
from bot.minimax.minimax_bot import MinimaxBot
return MinimaxBot()
raise RuntimeError