diff --git a/src/openllm/local.py b/src/openllm/local.py index 5eb4049f1..0e89f32b2 100644 --- a/src/openllm/local.py +++ b/src/openllm/local.py @@ -18,6 +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') run_command(cmd, env=env, cwd=cwd, venv=venv)