From 3fbb75f7e988514f849016faa9567cb096964638 Mon Sep 17 00:00:00 2001 From: Aaron Pham Date: Tue, 9 Jul 2024 22:56:27 -0400 Subject: [PATCH] chore: add instruction to access chat URL Signed-off-by: Aaron Pham --- src/openllm/local.py | 1 + 1 file changed, 1 insertion(+) 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)