Spaces:
Running
Running
Dax451
commited on
Commit
·
203c68f
1
Parent(s):
f3e9379
Ripristinata autenticazione utilizzando l'API Authenticator di Gradio 5.x
Browse files
app.py
CHANGED
@@ -273,12 +273,23 @@ def main():
|
|
273 |
# Crea l'interfaccia
|
274 |
interface = create_ui(generator)
|
275 |
|
276 |
-
#
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
|
283 |
if __name__ == "__main__":
|
284 |
main()
|
|
|
273 |
# Crea l'interfaccia
|
274 |
interface = create_ui(generator)
|
275 |
|
276 |
+
# Ottieni le credenziali dalle variabili d'ambiente
|
277 |
+
username = os.getenv("GRADIO_USERNAME")
|
278 |
+
password = os.getenv("GRADIO_PASSWORD")
|
279 |
+
|
280 |
+
# Configura l'autenticazione per Gradio 5.x
|
281 |
+
if username and password:
|
282 |
+
print(f"Autenticazione configurata con username: {username}")
|
283 |
+
# In Gradio 5.x, l'autenticazione è gestita diversamente
|
284 |
+
auth = gr.Authenticator.from_credentials(
|
285 |
+
credentials={username: password}
|
286 |
+
)
|
287 |
+
auth_demo = auth.wrap(interface)
|
288 |
+
auth_demo.launch(server_name="0.0.0.0")
|
289 |
+
else:
|
290 |
+
# Per test locali, disabilitiamo l'autenticazione
|
291 |
+
print("Autenticazione disabilitata per test locali. Su HF Spaces, imposta GRADIO_USERNAME e GRADIO_PASSWORD.")
|
292 |
+
interface.launch(server_name="0.0.0.0")
|
293 |
|
294 |
if __name__ == "__main__":
|
295 |
main()
|