serhany commited on
Commit
11a5899
·
verified ·
1 Parent(s): 235bd9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -10
app.py CHANGED
@@ -193,7 +193,6 @@ with gr.Blocks(theme=gr.themes.Soft(), title="🎬 CineGuide Comparison") as dem
193
  textbox=gr.Textbox(placeholder="Ask about movies...", container=False, scale=7),
194
  title="",
195
  description="",
196
- theme="soft",
197
  examples=[
198
  "Hi! I'm looking for something funny to watch tonight.",
199
  "I love dry, witty humor more than slapstick.",
@@ -201,10 +200,7 @@ with gr.Blocks(theme=gr.themes.Soft(), title="🎬 CineGuide Comparison") as dem
201
  "Can you recommend a good thriller?",
202
  "What's a good romantic comedy from the 2000s?"
203
  ],
204
- cache_examples=False,
205
- retry_btn=None,
206
- undo_btn="⤴️ Undo",
207
- clear_btn="🗑️ Clear"
208
  )
209
 
210
  with gr.Column(scale=1):
@@ -215,7 +211,6 @@ with gr.Blocks(theme=gr.themes.Soft(), title="🎬 CineGuide Comparison") as dem
215
  textbox=gr.Textbox(placeholder="Ask CineGuide about movies...", container=False, scale=7),
216
  title="",
217
  description="",
218
- theme="soft",
219
  examples=[
220
  "Hi! I'm looking for something funny to watch tonight.",
221
  "I love dry, witty humor more than slapstick.",
@@ -223,10 +218,7 @@ with gr.Blocks(theme=gr.themes.Soft(), title="🎬 CineGuide Comparison") as dem
223
  "Can you recommend a good thriller?",
224
  "What's a good romantic comedy from the 2000s?"
225
  ],
226
- cache_examples=False,
227
- retry_btn=None,
228
- undo_btn="⤴️ Undo",
229
- clear_btn="🗑️ Clear"
230
  )
231
 
232
  if __name__ == "__main__":
 
193
  textbox=gr.Textbox(placeholder="Ask about movies...", container=False, scale=7),
194
  title="",
195
  description="",
 
196
  examples=[
197
  "Hi! I'm looking for something funny to watch tonight.",
198
  "I love dry, witty humor more than slapstick.",
 
200
  "Can you recommend a good thriller?",
201
  "What's a good romantic comedy from the 2000s?"
202
  ],
203
+ cache_examples=False
 
 
 
204
  )
205
 
206
  with gr.Column(scale=1):
 
211
  textbox=gr.Textbox(placeholder="Ask CineGuide about movies...", container=False, scale=7),
212
  title="",
213
  description="",
 
214
  examples=[
215
  "Hi! I'm looking for something funny to watch tonight.",
216
  "I love dry, witty humor more than slapstick.",
 
218
  "Can you recommend a good thriller?",
219
  "What's a good romantic comedy from the 2000s?"
220
  ],
221
+ cache_examples=False
 
 
 
222
  )
223
 
224
  if __name__ == "__main__":