Update app.py
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ def evaluation(fen):
|
|
| 14 |
The evaluation
|
| 15 |
"""
|
| 16 |
url = "https://stockfish.online/api/s/v2.php"
|
| 17 |
-
params = {"fen": fen, "depth":
|
| 18 |
|
| 19 |
try:
|
| 20 |
response = requests.get(url, params=params, timeout=10)
|
|
|
|
| 14 |
The evaluation
|
| 15 |
"""
|
| 16 |
url = "https://stockfish.online/api/s/v2.php"
|
| 17 |
+
params = {"fen": fen, "depth": 12}
|
| 18 |
|
| 19 |
try:
|
| 20 |
response = requests.get(url, params=params, timeout=10)
|