Spaces:
Runtime error
Runtime error
Fabrice-TIERCELIN
commited on
This Pull Request fixes the space
Browse filesThe examples break the space if they are cached at the startup because it's too long. If they are cached after the startup, there are no more problems.
Click on _Merge_ to add this feature.
app.py
CHANGED
@@ -283,5 +283,6 @@ iface = gr.Interface(fn=review_commit,
|
|
283 |
description=description,
|
284 |
inputs=["text", "text", "text"],
|
285 |
outputs="text",
|
286 |
-
examples=examples
|
|
|
287 |
iface.launch()
|
|
|
283 |
description=description,
|
284 |
inputs=["text", "text", "text"],
|
285 |
outputs="text",
|
286 |
+
examples=examples,
|
287 |
+
cache_examples=False)
|
288 |
iface.launch()
|