From 443992c4d58dcb168a21c0f45afb36b84fbdd46a Mon Sep 17 00:00:00 2001 From: JonLuca De Caro Date: Fri, 3 Mar 2023 01:02:54 +0100 Subject: [PATCH] [Docs] Add missing word from prompt docs (#1406) The prompt in the first example of the quickstart guide was missing `for ` --- docs/getting_started/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/getting_started.md b/docs/getting_started/getting_started.md index a723d5f9..4086c524 100644 --- a/docs/getting_started/getting_started.md +++ b/docs/getting_started/getting_started.md @@ -66,7 +66,7 @@ llm = OpenAI(temperature=0.9) We can now call it on some input! ```python -text = "What would be a good company name a company that makes colorful socks?" +text = "What would be a good company name for a company that makes colorful socks?" print(llm(text)) ```