From e9baf9c134f6d05b0ce7b87461bf296572e24c65 Mon Sep 17 00:00:00 2001 From: Jim Salmons Date: Sun, 20 Nov 2022 16:22:53 -0700 Subject: [PATCH] Update llm.md (#164) Without the print on the `llm` call, the new user sees no visible effect when just getting started. The assumption here is the new user is running this in a new sandbox script file or repl via copy-paste. --- docs/getting_started/llm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/llm.md b/docs/getting_started/llm.md index a4ac89ccc51..9133a4a133c 100644 --- a/docs/getting_started/llm.md +++ b/docs/getting_started/llm.md @@ -21,5 +21,5 @@ We can now call it on some input! ```python text = "What would be a good company name a company that makes colorful socks?" -llm(text) +print(llm(text)) ```