forked from lichess-bot-devs/lichess-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml.default
45 lines (37 loc) · 1.4 KB
/
config.yml.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
token: "xxxxxxxxxxxxxxxx" # lichess OAuth2 Token
url: "https://lichess.org/" # lichess base URL
engine: # engine settings
dir: "./engines/" # dir containing engines, relative to this project
name: "engine_name" # binary name of the engine to use
protocol: "uci" # "uci" or "xboard"
# weights: "latest.txt" # only if the engine is lczero
# threads: 1 # only if the engine is lczero
ucioptions: # arbitrary UCI options passed to the engine
Move Overhead: 100 # increase if your bot flags games too often
# Threads: 4
# Hash: "4096"
# Book File: "engines/book.bin"
max_concurrent_games: 1 # number of games to play simultaneously
sort_challenges_by: "best" # possible values: "best", "first"
supported_variants: # chess variants to accept (http://lichess.org/variant)
- standard
# - fromPosition
# - antichess
# - atomic
# - chess960
# - crazyhouse
# - horde
# - kingOfTheHill
# - racingKings
# - threeCheck
supported_tc: # time controls to accept
- ultraBullet
- bullet
- blitz
- rapid
# - classical
# - correspondence
supported_modes: # game modes to accept
- casual # unrated games
- rated # rated games - must comment if the engine doesn't try to win
print_engine_stats: false # print engine stats on each move