From aec742b6d21056a4dbb45c3b82c6c3552b47b9bc Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Wed, 6 Dec 2023 15:30:45 -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 6f4aade5..e4543c6c 100644 --- a/examples/python-simplechat/readme.md +++ b/examples/python-simplechat/readme.md @@ -17,7 +17,7 @@ With the **generate** endpoint, you need to provide a `prompt`. But with **chat* The final JSON object doesn't provide the full content, so you will need to build the content yourself. -In the **main** function, we collect `user_input` and add it as a message to our messages and that is passed to the chat function. And the output is added as another message. +In the **main** function, we collect `user_input` and add it as a message to our messages and that is passed to the chat function. When the LLM is done responding the output is added as another message. ## Next Steps