From c64a921383346ac11c880f0bc957fb0cc2b85fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Te=C3=AFlo=20M?= Date: Tue, 24 Dec 2024 00:06:05 +0100 Subject: [PATCH] fix: Change 'input' to 'prompt' --- examples/requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/requests.md b/examples/requests.md index 8fe29d7..22942cb 100644 --- a/examples/requests.md +++ b/examples/requests.md @@ -11,7 +11,7 @@ The simplest type of request. Just provide an input text and get a completion. curl -X POST http://localhost:8081/v1/completions \ -H "Content-Type: application/json" \ -d '{ - "input": "What is the capital of France?" + "prompt": "What is the capital of France?" }' ```