ddiddu commited on
Commit
eb5872b
·
verified ·
1 Parent(s): 68b4596

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -8
app.py CHANGED
@@ -293,13 +293,7 @@ examples = [
293
  # "How is the answer generated?"
294
  ]
295
 
296
- css = """
297
- .container {
298
- height: 1000vh;
299
- }
300
- """
301
-
302
- with gr.Blocks(theme='gradio/soft', fill_height=True, css=css) as demo:
303
  gr.Markdown(
304
  """
305
  <img src="http://jisulog.kim/profile.png" alt="Profile Image" style="width: 250px; height: auto; border-radius: 50%;">
@@ -323,4 +317,4 @@ with gr.Blocks(theme='gradio/soft', fill_height=True, css=css) as demo:
323
  gr.ChatInterface(predict, examples=examples)
324
 
325
  if __name__ == "__main__":
326
- demo.launch()
 
293
  # "How is the answer generated?"
294
  ]
295
 
296
+ with gr.Blocks(theme='gradio/soft', fill_height=True) as demo:
 
 
 
 
 
 
297
  gr.Markdown(
298
  """
299
  <img src="http://jisulog.kim/profile.png" alt="Profile Image" style="width: 250px; height: auto; border-radius: 50%;">
 
317
  gr.ChatInterface(predict, examples=examples)
318
 
319
  if __name__ == "__main__":
320
+ demo.launch(height=750)