Futuresony commited on
Commit
d2bf3b8
·
verified ·
1 Parent(s): f663a95

Update app.py

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