Fabrice-TIERCELIN commited on
Commit
68ad764
·
verified ·
1 Parent(s): 9cad313

This Pull Request fixes the space

Browse files

The 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.

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