Skip to content

Commit

Permalink
chore: make the UI link clickable in output (#1038)
Browse files Browse the repository at this point in the history
* chore: make the UI link clickable in output

Signed-off-by: bojiang <5886138+bojiang@users.noreply.github.com>

* Update src/openllm/local.py

Signed-off-by: bojiang <5886138+bojiang@users.noreply.github.com>

---------

Signed-off-by: bojiang <5886138+bojiang@users.noreply.github.com>
  • Loading branch information
bojiang authored Jul 11, 2024
1 parent c82adf6 commit 50fff29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openllm/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def _get_serve_cmd(bento: BentoInfo, port: int = 3000):
def serve(bento: BentoInfo, port: int = 3000):
venv = ensure_venv(bento)
cmd, env, cwd = _get_serve_cmd(bento, port=port)
output('Access the Chat UI at localhost:3000/chat')
output(f'Access the Chat UI at http://localhost:{port}/chat (or with you IP)')
run_command(cmd, env=env, cwd=cwd, venv=venv)


Expand Down

0 comments on commit 50fff29

Please sign in to comment.