harshSethi commited on
Commit
a00bb17
·
1 Parent(s): 74b36e2

made changes to app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -27,3 +27,8 @@ demo = gr.Interface(
27
 
28
  # Launch the Gradio interface
29
  demo.launch(share=True)
 
 
 
 
 
 
27
 
28
  # Launch the Gradio interface
29
  demo.launch(share=True)
30
+
31
+ if __name__ == "__main__":
32
+ import uvicorn
33
+ import calc_fast_api
34
+ uvicorn.run("calc_fast_api:app",host="127.0.0.1",port="8000")