From 51131cc6e270d2b52e8e348abd275a618d5f2640 Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Wed, 6 Dec 2023 15:30:10 -0800 Subject: [PATCH] Update examples/python-simplechat/client.py Co-authored-by: Bruce MacDonald --- examples/python-simplechat/client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/python-simplechat/client.py b/examples/python-simplechat/client.py index 63d2f141..3f1d0bb1 100644 --- a/examples/python-simplechat/client.py +++ b/examples/python-simplechat/client.py @@ -32,8 +32,6 @@ def chat(messages): def main(): messages = [] - context = ( - [] ) # the context stores a conversation history, you can use this to make the model more context aware while True: user_input = input("Enter a prompt: ")