enotkrutoy commited on
Commit
1447959
1 Parent(s): 9bb30ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -85,4 +85,13 @@ app = gr.Interface(
85
  ],
86
  outputs="image"
87
  )
 
 
 
 
 
 
 
 
 
88
  app.launch()
 
85
  ],
86
  outputs="image"
87
  )
88
+
89
+ # HTML-код для reCAPTCHA
90
+ captcha_html = """
91
+ <iframe src="https://enotkrutoy-recaptcha.static.hf.space" frameborder="0" width="850" height="450"></iframe>
92
+ """
93
+
94
+ # Включаем HTML-код reCAPTCHA в интерфейс
95
+ demo.add_component(gr.HTML(captcha_html))
96
+
97
  app.launch()