From f337642e94fe44514096f776bf03834d591a846b Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Wed, 6 Dec 2023 15:30:35 -0800 Subject: [PATCH] Update examples/python-simplechat/readme.md Co-authored-by: Bruce MacDonald --- examples/python-simplechat/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python-simplechat/readme.md b/examples/python-simplechat/readme.md index e9fbc245..6f4aade5 100644 --- a/examples/python-simplechat/readme.md +++ b/examples/python-simplechat/readme.md @@ -1,6 +1,6 @@ # Simple Chat Example -The **chat** endpoint is one of two ways to generate text from an LLM with Ollama. At a high level you provide the endpoint an array of objects with a role and content specified. Then with each output and prompt, you add more of those role/content objects, which builds up the memory. +The **chat** endpoint is one of two ways to generate text from an LLM with Ollama. At a high level you provide the endpoint an array of objects with a role and content specified. Then with each output and prompt, you add more of those role/content objects, which builds up the history. ## Review the Code