Update app.py
Browse files
app.py
CHANGED
|
@@ -60,6 +60,14 @@ interface = gr.Interface(
|
|
| 60 |
outputs=gr.Textbox(label="Resultado JSON"),
|
| 61 |
title="Estructurador de Autodiagn贸stico",
|
| 62 |
description="Ingrese el texto para analizar y extraer informaci贸n en un formato JSON predefinido."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
)
|
| 64 |
|
| 65 |
-
interface.launch()
|
|
|
|
| 60 |
outputs=gr.Textbox(label="Resultado JSON"),
|
| 61 |
title="Estructurador de Autodiagn贸stico",
|
| 62 |
description="Ingrese el texto para analizar y extraer informaci贸n en un formato JSON predefinido."
|
| 63 |
+
gr.Markdown(
|
| 64 |
+
"""
|
| 65 |
+
<br>
|
| 66 |
+
<div style="text-align: right;">
|
| 67 |
+
<img src="gdmk logo.png" alt="Logo" style="width: 200px;">
|
| 68 |
+
</div>
|
| 69 |
+
"""
|
| 70 |
+
)
|
| 71 |
)
|
| 72 |
|
| 73 |
+
interface.launch(share=True)
|