shethjenil commited on
Commit
a40d01d
·
verified ·
1 Parent(s): 97f214a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,5 +15,5 @@ def flask_app():
15
  def flask_app2():
16
  return 'Flask app2 called!'
17
  app.mount('/flask', WSGIMiddleware(flaskapp))
18
- app = gr.mount_gradio_app(app, gr.Interface(lambda x: "Hello, " + x + "!", "textbox", "textbox",theme="allenai/gradio-theme",flagging_mode="never"), path="/gradio")
19
  uvicorn.run(app, host='0.0.0.0', port=7860)
 
15
  def flask_app2():
16
  return 'Flask app2 called!'
17
  app.mount('/flask', WSGIMiddleware(flaskapp))
18
+ app = gr.mount_gradio_app(app, gr.Interface(lambda x: x, "textbox", "textbox"), path="/gradio")
19
  uvicorn.run(app, host='0.0.0.0', port=7860)