diff --git a/playground/demos/chatbot/README.md b/playground/demos/chatbot/README.md index af25f803..d74ca062 100644 --- a/playground/demos/chatbot/README.md +++ b/playground/demos/chatbot/README.md @@ -28,7 +28,7 @@ docker run --rm --env "HF_TOKEN=" \ --ipc=host \ -p 8000:8000 \ llm-serving:vllm-cpu \ - --model NousResearch/Hermes-3-Llama-3.1-8B + --model ``` * Start the Chatbot API Server with the following shell command: @@ -37,6 +37,15 @@ docker run --rm --env "HF_TOKEN=" \ uvicorn server:app --port 8888 ``` +* Start the Chatbot UI + +From the chatbot-ui directory: + +```bash + yarn install + yarn run dev. +``` + ## Chatbot API Server (FastAPI) This API is written in Python and depends on FastAPI.