Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
-
import
|
3 |
|
4 |
|
5 |
-
demo = gr.Interface(fn=
|
6 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from NDPS import ndps
|
3 |
|
4 |
|
5 |
+
demo = gr.Interface(fn=ndps, inputs="text", outputs="text")
|
6 |
demo.launch()
|