Update app.py
Browse files
app.py
CHANGED
@@ -17,14 +17,14 @@ def predict(input):
|
|
17 |
)
|
18 |
return response
|
19 |
|
20 |
-
|
21 |
gr.Interface(
|
22 |
fn=predict,
|
23 |
title=title,
|
24 |
description=description,
|
25 |
examples=examples,
|
26 |
inputs=["text", "state"],
|
27 |
-
outputs=["text"
|
28 |
theme="finlaymacklon/boxy_violet",
|
29 |
).launch()
|
30 |
|
|
|
17 |
)
|
18 |
return response
|
19 |
|
20 |
+
#see https://www.gradio.app/guides/quickstart
|
21 |
gr.Interface(
|
22 |
fn=predict,
|
23 |
title=title,
|
24 |
description=description,
|
25 |
examples=examples,
|
26 |
inputs=["text", "state"],
|
27 |
+
outputs=["text"],
|
28 |
theme="finlaymacklon/boxy_violet",
|
29 |
).launch()
|
30 |
|