Skip to content

Commit

Permalink
Update CLI default host to avoid confusion around 0.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pycui committed Jul 18, 2023
1 parent 6aa5cd4 commit 168dc6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def docker_delete(name):
def run_uvicorn(args):
click.secho("Running uvicorn server...", fg='green')
subprocess.run(["uvicorn", "realtime_ai_character.main:app",
"--host", "0.0.0.0", "--ws-ping-interval", "60", "--ws-ping-timeout", "60", "--timeout-keep-alive", "60"] + list(args))
"--ws-ping-interval", "60", "--ws-ping-timeout", "60", "--timeout-keep-alive", "60"] + list(args))


def image_exists(name):
Expand Down

0 comments on commit 168dc6b

Please sign in to comment.