luodian commited on
Commit
05d4795
1 Parent(s): 006a016

chore: Update app.py and requirements.txt

Browse files
Files changed (2) hide show
  1. __pycache__/app.cpython-310.pyc +0 -0
  2. app.py +6 -0
__pycache__/app.cpython-310.pyc ADDED
Binary file (10.7 kB). View file
 
app.py CHANGED
@@ -435,6 +435,12 @@ if __name__ == "__main__":
435
  argparser.add_argument("--debug", action="store_true")
436
 
437
  args = argparser.parse_args()
 
 
 
 
 
 
438
  model_path = args.model_path
439
  filt_invalid = "cut"
440
  model_name = get_model_name_from_path(args.model_path)
 
435
  argparser.add_argument("--debug", action="store_true")
436
 
437
  args = argparser.parse_args()
438
+ import gradio as gr
439
+ import gradio_client
440
+
441
+ print(f"Gradio version: {gr.__version__}")
442
+ print(f"Gradio-client version: {gradio_client.__version__}")
443
+
444
  model_path = args.model_path
445
  filt_invalid = "cut"
446
  model_name = get_model_name_from_path(args.model_path)