From 3919f4ba3d0c40f50b4b89474e3306a900a15eed Mon Sep 17 00:00:00 2001 From: Ubaldo Porcheddu Date: Sat, 4 Jan 2025 23:45:16 +0000 Subject: [PATCH] llama: fix runner api example url in README.md (#8307) --- llama/runner/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama/runner/README.md b/llama/runner/README.md index 98f21e09e..75f61682e 100644 --- a/llama/runner/README.md +++ b/llama/runner/README.md @@ -17,5 +17,5 @@ curl -X POST -H "Content-Type: application/json" -d '{"prompt": "hi"}' http://lo ### Embeddings ``` -curl -X POST -H "Content-Type: application/json" -d '{"prompt": "turn me into an embedding"}' http://localhost:8080/embeddings +curl -X POST -H "Content-Type: application/json" -d '{"prompt": "turn me into an embedding"}' http://localhost:8080/embedding ```