From ad8ca8886e061a74d28eab4caa64fdf0f22acaf2 Mon Sep 17 00:00:00 2001 From: nithi-i <110571659+nithi-i@users.noreply.github.com> Date: Wed, 7 Aug 2024 19:11:48 -0700 Subject: [PATCH] Fix typo {your_ip} to {host_ip} (#533) Co-authored-by: Pratool Bharti --- ChatQnA/docker/xeon/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChatQnA/docker/xeon/README.md b/ChatQnA/docker/xeon/README.md index 8be8828a5..b6c1fe3a4 100644 --- a/ChatQnA/docker/xeon/README.md +++ b/ChatQnA/docker/xeon/README.md @@ -303,7 +303,7 @@ curl http://${host_ip}:9009/generate \ ```bash # vLLM Service -curl http://${your_ip}:9009/v1/completions \ +curl http://${host_ip}:9009/v1/completions \ -H "Content-Type: application/json" \ -d '{"model": "Intel/neural-chat-7b-v3-3", "prompt": "What is Deep Learning?", "max_tokens": 32, "temperature": 0}' ```