Pendrokar commited on
Commit
85c9f67
β€’
1 Parent(s): 81f118e

Do not cache examples.

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -120,13 +120,14 @@ gradio_app = gr.Interface(
120
  ],
121
  outputs=gr.Audio(label="22kHz audio", type="filepath"),
122
  title="xVASynth (WIP)",
123
- examples=[
124
- ["Once, I headed in much deeper. But I doubt I'll ever do that again.", 1],
125
- ["You love hurting me, huh?", 1.5],
126
- ["Ah! What is happening to me?!?", 1],
127
- ["Embrace your demise!", 1],
128
- ["Never come back!", 1]
129
- ]
 
130
  )
131
 
132
 
 
120
  ],
121
  outputs=gr.Audio(label="22kHz audio", type="filepath"),
122
  title="xVASynth (WIP)",
123
+ examples=[
124
+ ["Once, I headed in much deeper. But I doubt I'll ever do that again.", 1],
125
+ ["You love hurting me, huh?", 1.5],
126
+ ["Ah! What is happening to me?!?", 1],
127
+ ["Embrace your demise!", 1],
128
+ ["Never come back!", 1]
129
+ ],
130
+ cache_examples=None
131
  )
132
 
133