Skip to content

Commit

Permalink
Merge pull request #1 from mouhao/mouhao-patch-1
Browse files Browse the repository at this point in the history
Update webui.py
  • Loading branch information
mouhao authored May 7, 2023
2 parents 5ab7f21 + 5427b71 commit 0cb582b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,11 @@ def api_only():
print(f"Startup time: {startup_timer.summary()}.")
api.launch(server_name="0.0.0.0" if cmd_opts.listen else "127.0.0.1", port=cmd_opts.port if cmd_opts.port else 7861)

# patch in url for api docs
def my_setup(self):
self.docs_url = "/docs"
self.redoc_url = "/redoc"
self.orig_setup()

def webui():
launch_api = cmd_opts.api
Expand Down Expand Up @@ -313,6 +318,9 @@ def webui():
for line in file.readlines():
gradio_auth_creds += [x.strip() for x in line.split(',') if x.strip()]

if launch_api:
FastAPI.orig_setup = FastAPI.setup
setattr(FastAPI, "setup", my_setup)
app, local_url, share_url = shared.demo.launch(
share=cmd_opts.share,
server_name=server_name,
Expand Down

0 comments on commit 0cb582b

Please sign in to comment.