Adriiiii24 commited on
Commit
162bb59
·
verified ·
1 Parent(s): 5e969ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -1
app.py CHANGED
@@ -34,4 +34,22 @@ def texto_sum(text):
34
  # Interfaz de Gradio
35
  demo = gr.Interface(
36
  fn=texto_sum,
37
- inputs=gr.Textbox(label="Texto a introducir:", pla
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  # Interfaz de Gradio
35
  demo = gr.Interface(
36
  fn=texto_sum,
37
+ inputs=gr.Textbox(label="Texto a introducir:", placeholder="Introduce el texto a resumir aquí..."),
38
+ outputs="text"
39
+ )
40
+
41
+ # Probar el token en una solicitud simple para verificar su validez
42
+ def test_translation_api():
43
+ test_response = requests.post(API_URL, headers=headers, json={"inputs": "Hello, how are you?"})
44
+ response_data = test_response.json()
45
+
46
+ # Comprobar si hay errores en la respuesta
47
+ if 'error' in response_data:
48
+ raise ValueError(f"Error en la API de traducción: {response_data['error']}")
49
+ print("Token válido y API accesible. Respuesta de prueba:", response_data)
50
+
51
+ # Ejecutar la prueba de token
52
+ test_translation_api()
53
+
54
+ # Lanzar la interfaz
55
+ demo.launch()