Skip to content

Commit a5ed223

Browse files
authored
Fix minor issue in ChatQnA Gaudi docker README (#567)
Signed-off-by: dmsuehir <dina.s.jones@intel.com>
1 parent e12baca commit a5ed223

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ChatQnA/docker/gaudi/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ curl http://${host_ip}:8008/generate \
306306

307307
```bash
308308
#vLLM Service
309-
curl http://${your_ip}:8008/v1/completions \
309+
curl http://${host_ip}:8008/v1/completions \
310310
-H "Content-Type: application/json" \
311311
-d '{
312312
"model": "${LLM_MODEL_ID}",
@@ -318,7 +318,7 @@ curl http://${your_ip}:8008/v1/completions \
318318

319319
```bash
320320
#vLLM-on-Ray Service
321-
curl http://${your_ip}:8008/v1/chat/completions \
321+
curl http://${host_ip}:8008/v1/chat/completions \
322322
-H "Content-Type: application/json" \
323323
-d '{"model": "${LLM_MODEL_ID}", "messages": [{"role": "user", "content": "What is Deep Learning?"}]}'
324324
```

0 commit comments

Comments
 (0)