lichess-bot sending quit to UCI on startup #1191
-
|
I'm trying to set up lichess-bot to use my UCI engine. The basic UCI startup comms appear to be working, but lichess-bot sends a quit, then about a minute later exits with an extensive debug log. I believe I've executed all the steps as outlined in the doc up until this failure. I've attached the log.txt. Sorry, I'm not familiar with python so I'm not sure how to proceed. The engine has played a few thousand games on FICS using UCI, polyglot, and xboard, so conceptually I believe it can work. Thanks, Stacey |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Judging by the last two lines before the traceback: a full minute passed after your bot received the At this point in the lichess-bot run, the bot is started and shutdown immediately as a check that the bot is minimally functional and communicative with lichess-bot. As a check, start your bot manually on the command line and manually type I took a quick look at your code, and it doesn't seem like the |
Beta Was this translation helpful? Give feedback.
Judging by the last two lines before the traceback:
a full minute passed after your bot received the
quitcommand and lichess-bot shutting down due to a timeout.At this point in the lichess-bot run, the bot is started and shutdown immediately as a check that the bot is minimally functional and communicative with lichess-bot.
As a check, start your bot manually on the command line and manually type
uci,isready, andquit. Check if your bot successfully quit.I took a quick look at your cod…