akhaliq HF staff commited on
Commit
3db62e6
1 Parent(s): 7e7ab2f

add print version logs

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -62,7 +62,7 @@ def main():
62
 
63
  gr.Markdown(NOTES)
64
  gr.Markdown(FOOTER)
65
-
66
  run_button.click(fn=model.run_with_translation,
67
  inputs=[
68
  text,
@@ -72,7 +72,7 @@ def main():
72
  image_prompt
73
  ],
74
  outputs=[translated_text, result_video])
75
-
76
  demo.launch()
77
 
78
 
62
 
63
  gr.Markdown(NOTES)
64
  gr.Markdown(FOOTER)
65
+ print(gr.__version__)
66
  run_button.click(fn=model.run_with_translation,
67
  inputs=[
68
  text,
72
  image_prompt
73
  ],
74
  outputs=[translated_text, result_video])
75
+ print(gr.__version__)
76
  demo.launch()
77
 
78