Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -173,4 +173,7 @@ def main():
|
|
| 173 |
# Predict the next move
|
| 174 |
next_move = predict_next_move(fen_notation, stockfish)
|
| 175 |
st.subheader("Stockfish Recommended Move:")
|
| 176 |
-
st.write(next_move)
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
# Predict the next move
|
| 174 |
next_move = predict_next_move(fen_notation, stockfish)
|
| 175 |
st.subheader("Stockfish Recommended Move:")
|
| 176 |
+
st.write(next_move)
|
| 177 |
+
|
| 178 |
+
if __name__ == "__main__":
|
| 179 |
+
main()
|