Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -5,8 +5,8 @@ import os
|
|
5 |
# Initialize the Flask app
|
6 |
app = Flask(__name__)
|
7 |
|
8 |
-
# Initialize the Hugging Face Inference Client
|
9 |
-
client = InferenceClient("Futuresony/future_ai_12_10_2024.gguf")
|
10 |
|
11 |
@app.route("/")
|
12 |
def home():
|
|
|
5 |
# Initialize the Flask app
|
6 |
app = Flask(__name__)
|
7 |
|
8 |
+
# Initialize the Hugging Face Inference Client with no timeout
|
9 |
+
client = InferenceClient("Futuresony/future_ai_12_10_2024.gguf", timeout=None)
|
10 |
|
11 |
@app.route("/")
|
12 |
def home():
|