m7n commited on
Commit
e78419a
·
1 Parent(s): fa8d38f

added more zerogpu attributes.

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -452,7 +452,6 @@ def predict(text_input, sample_size_slider, reduce_sample_checkbox, sample_reduc
452
  gr.Button(visible=False) # Return hidden state for cancel button
453
  ]
454
 
455
-
456
  predict.zerogpu = True
457
 
458
 
@@ -651,5 +650,13 @@ with gr.Blocks(theme=theme, css="""
651
  # Mount and run app
652
  app = gr.mount_gradio_app(app, demo, path="/",ssr_mode=False)
653
 
 
 
 
 
 
 
 
 
654
  if __name__ == "__main__":
655
- uvicorn.run(app, host="0.0.0.0", port=7860)
 
452
  gr.Button(visible=False) # Return hidden state for cancel button
453
  ]
454
 
 
455
  predict.zerogpu = True
456
 
457
 
 
650
  # Mount and run app
651
  app = gr.mount_gradio_app(app, demo, path="/",ssr_mode=False)
652
 
653
+ app.zerogpu = True # Add this line
654
+
655
+
656
+ def start_server(app):
657
+ uvicorn.run(app, host="0.0.0.0", port=7860)
658
+
659
+ start_server.zerogpu = True
660
+
661
  if __name__ == "__main__":
662
+ start_server(app)