siddharth060104 commited on
Commit
28e9da1
·
verified ·
1 Parent(s): f296950

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
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()