Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
haruiz authored Jun 14, 2024
1 parent d346522 commit 91251a4
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit 91251a4

Please sign in to comment.