Omnibus commited on
Commit
53fb5d8
·
verified ·
1 Parent(s): 2d10f13

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -514,9 +514,9 @@ css="""
514
  #frame { width: 800px; height: 800px; border: 1px solid black; }
515
  #frame { zoom: $ZOOM; -moz-transform: scale($ZOOM); -moz-transform-origin: 0 0; }
516
  """
 
517
 
518
-
519
- with gr.Blocks(css=css.replace("$ZOOM",1.25)) as app:
520
  gr.HTML("""<center><h1>Mixtral 8x7B TLDR Summarizer + Web</h1><h3>Summarize Data of unlimited length</h3>""")
521
  chatbot = gr.Chatbot(label="Mixtral 8x7B Chatbot",show_copy_button=True)
522
  with gr.Row():
 
514
  #frame { width: 800px; height: 800px; border: 1px solid black; }
515
  #frame { zoom: $ZOOM; -moz-transform: scale($ZOOM); -moz-transform-origin: 0 0; }
516
  """
517
+ this=["1.25"]
518
 
519
+ with gr.Blocks(css=css.replace("$ZOOM",this[0])) as app:
 
520
  gr.HTML("""<center><h1>Mixtral 8x7B TLDR Summarizer + Web</h1><h3>Summarize Data of unlimited length</h3>""")
521
  chatbot = gr.Chatbot(label="Mixtral 8x7B Chatbot",show_copy_button=True)
522
  with gr.Row():