Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -71,7 +71,19 @@ def predict_next_move(fen, stockfish):
|
|
71 |
|
72 |
|
73 |
|
74 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
def process_image(image_path):
|
76 |
# Ensure output directory exists
|
77 |
if not os.path.exists('output'):
|
@@ -245,7 +257,7 @@ def main():
|
|
245 |
|
246 |
st.subheader("Generated FEN Notation:")
|
247 |
st.code(fen_notation)
|
248 |
-
|
249 |
# Initialize the Stockfish engine
|
250 |
stockfish = Stockfish(
|
251 |
path="stockfish-windows-x86-64-avx2.exe", # Replace with your Stockfish path"
|
|
|
71 |
|
72 |
|
73 |
|
74 |
+
def download_stockfish():
|
75 |
+
url = "https://drive.google.com/file/d/18pkwBVc13fgKP3LzrTHE4yzhjyGJexlR/view?usp=sharing" # Replace with the actual link
|
76 |
+
file_name = "stockfish-windows-x86-64-avx2.exe"
|
77 |
+
|
78 |
+
if not os.path.exists(file_name):
|
79 |
+
print(f"Downloading {file_name}...")
|
80 |
+
response = requests.get(url, stream=True)
|
81 |
+
with open(file_name, "wb") as file:
|
82 |
+
for chunk in response.iter_content(chunk_size=1024):
|
83 |
+
if chunk:
|
84 |
+
file.write(chunk)
|
85 |
+
print(f"{file_name} downloaded successfully.")
|
86 |
+
|
87 |
def process_image(image_path):
|
88 |
# Ensure output directory exists
|
89 |
if not os.path.exists('output'):
|
|
|
257 |
|
258 |
st.subheader("Generated FEN Notation:")
|
259 |
st.code(fen_notation)
|
260 |
+
download_stockfish()
|
261 |
# Initialize the Stockfish engine
|
262 |
stockfish = Stockfish(
|
263 |
path="stockfish-windows-x86-64-avx2.exe", # Replace with your Stockfish path"
|