resberry commited on
Commit
f3700a2
·
verified ·
1 Parent(s): f3695b9

Update paper_rlm_app.py

Browse files
Files changed (1) hide show
  1. paper_rlm_app.py +1 -3
paper_rlm_app.py CHANGED
@@ -7271,7 +7271,7 @@ body {
7271
 
7272
 
7273
  def build_app():
7274
- with gr.Blocks(title=APP_TITLE) as demo:
7275
  session = gr.State(new_session())
7276
 
7277
  with gr.Row(elem_id="rlm-app-shell"):
@@ -7564,8 +7564,6 @@ def main():
7564
  port = find_open_port()
7565
  print(f"Starting RLM app on http://127.0.0.1:{port}", flush=True)
7566
  demo.launch(
7567
- css=CSS,
7568
- theme=gr.themes.Base(),
7569
  server_name="127.0.0.1",
7570
  server_port=port,
7571
  )
 
7271
 
7272
 
7273
  def build_app():
7274
+ with gr.Blocks(title=APP_TITLE, css=CSS, theme=gr.themes.Base()) as demo:
7275
  session = gr.State(new_session())
7276
 
7277
  with gr.Row(elem_id="rlm-app-shell"):
 
7564
  port = find_open_port()
7565
  print(f"Starting RLM app on http://127.0.0.1:{port}", flush=True)
7566
  demo.launch(
 
 
7567
  server_name="127.0.0.1",
7568
  server_port=port,
7569
  )