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)) ```