Spaces:
Build error
Build error
diegulio
commited on
Commit
·
a9bf980
1
Parent(s):
006413e
fix app
Browse files- app.py +3 -3
- license/{app_licence.py → app.py} +0 -0
app.py
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
import gradio as gr
|
2 |
-
from cedula import get_attributes as cedula_get_attributes
|
3 |
-
from license import get_attributes as license_get_attributes
|
4 |
|
5 |
with gr.Tab("Cedula"):
|
6 |
demo = gr.Interface(cedula_get_attributes, "file", "label")
|
7 |
with gr.Tab("Licencia"):
|
8 |
demo = gr.Interface(license_get_attributes, "file", "label")
|
9 |
-
|
10 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from cedula.app import get_attributes as cedula_get_attributes
|
3 |
+
from license.app import get_attributes as license_get_attributes
|
4 |
|
5 |
with gr.Tab("Cedula"):
|
6 |
demo = gr.Interface(cedula_get_attributes, "file", "label")
|
7 |
with gr.Tab("Licencia"):
|
8 |
demo = gr.Interface(license_get_attributes, "file", "label")
|
9 |
+
|
10 |
demo.launch()
|
license/{app_licence.py → app.py}
RENAMED
File without changes
|