From 91251a4fb05b993dfe013350cb06c9296e7fca03 Mon Sep 17 00:00:00 2001 From: "Henry Ruiz, PhD" Date: Fri, 14 Jun 2024 08:58:08 -0500 Subject: [PATCH] Update README.md --- README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.md b/README.md index df14566..f5c2df9 100644 --- a/README.md +++ b/README.md @@ -285,13 +285,6 @@ if __name__ == "__main__": chat = playground.start_chat(history=[]) - - image = ImageFile("./data/dog.jpg") - ai_message = chat.send_message(["can you describe the following image: ", image], stream=True) - for response_chunk in ai_message: - if isinstance(response_chunk, Message): - print(response_chunk.text, end="") - print() while True: user_input = input("You: ") if user_input == "exit":