Update app.py
Browse files
app.py
CHANGED
@@ -51,4 +51,7 @@ def main()
|
|
51 |
data = data{"message"}
|
52 |
return data
|
53 |
except:
|
54 |
-
return "Error occured"
|
|
|
|
|
|
|
|
51 |
data = data{"message"}
|
52 |
return data
|
53 |
except:
|
54 |
+
return "Error occured"
|
55 |
+
|
56 |
+
iface = gr.Interface(fn=main, inputs="text", outputs="text")
|
57 |
+
iface.launch()
|