sbthesis commited on
Commit
c70e210
·
1 Parent(s): 412347c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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", "state"],
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