Fabrice-TIERCELIN commited on
Commit
c9146a4
·
verified ·
1 Parent(s): 6cf9135

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 +1 -0
app.py CHANGED
@@ -104,6 +104,7 @@ iface = gr.Interface(
104
  title=title,
105
  description=description,
106
  examples=examples,
 
107
  inputs=["text", "text"], # Take user input and system prompt separately
108
  outputs="text",
109
  theme="ParityError/Anime"
 
104
  title=title,
105
  description=description,
106
  examples=examples,
107
+ cache_examples=False,
108
  inputs=["text", "text"], # Take user input and system prompt separately
109
  outputs="text",
110
  theme="ParityError/Anime"