mgokg commited on
Commit
4e4e893
·
verified ·
1 Parent(s): 3dfd27d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -8
app.py CHANGED
@@ -5,12 +5,13 @@ import uvicorn
5
  from fastapi.middleware.cors import CORSMiddleware
6
 
7
  app = FastAPI()
8
-
9
- # Erlaubt alle Ursprünge
10
- app.add_middleware(
11
- CORSMiddleware, allow_origins=["*"],
12
- allow_credentials=True,
13
- allow_methods=["*"],
 
14
  allow_headers=["*"],
15
  )
16
 
@@ -33,9 +34,12 @@ def get_prompt():
33
 
34
  gr_interface = gr.Interface(fn=get_prompt, inputs=[], outputs="text", live=True)
35
 
 
 
 
36
  @app.get("/")
37
  def read_root():
38
- return gr_interface.launch(share=True)
39
 
40
  if __name__ == "__main__":
41
- uvicorn.run(app, host="0.0.0.0", port=8000)
 
5
  from fastapi.middleware.cors import CORSMiddleware
6
 
7
  app = FastAPI()
8
+
9
+ # Allow all origins
10
+ app.add_middleware(
11
+ CORSMiddleware,
12
+ allow_origins=["*"],
13
+ allow_credentials=True,
14
+ allow_methods=["*"],
15
  allow_headers=["*"],
16
  )
17
 
 
34
 
35
  gr_interface = gr.Interface(fn=get_prompt, inputs=[], outputs="text", live=True)
36
 
37
+ # Mount the Gradio app under "/gradio"
38
+ app.mount("/gradio", gr_interface.app)
39
+
40
  @app.get("/")
41
  def read_root():
42
+ return {"message": "Welcome to the root endpoint."}
43
 
44
  if __name__ == "__main__":
45
+ uvicorn.run(app, host="0.0.0.0", port=8000)