Spaces:
Runtime error
Runtime error
Commit
·
84f6ca8
1
Parent(s):
69ef035
fix
Browse files- app_dialogue.py +1 -0
app_dialogue.py
CHANGED
@@ -567,6 +567,7 @@ with gr.Blocks(title="IDEFICS Playground", theme=gr.themes.Base()) as demo:
|
|
567 |
client = Client(
|
568 |
base_url=client_endpoint,
|
569 |
headers={"x-use-cache": "0", "Authorization": f"Bearer {API_TOKEN}"},
|
|
|
570 |
)
|
571 |
|
572 |
# Common parameters to all decoding strategies
|
|
|
567 |
client = Client(
|
568 |
base_url=client_endpoint,
|
569 |
headers={"x-use-cache": "0", "Authorization": f"Bearer {API_TOKEN}"},
|
570 |
+
timeout=60, # Generous time out just in case because we are in greedy. All examples should be computed in less than 30secs with the 80b-instruct.
|
571 |
)
|
572 |
|
573 |
# Common parameters to all decoding strategies
|