Skip to content

Commit

Permalink
Update mistral.py
Browse files Browse the repository at this point in the history
  • Loading branch information
RMNCLDYO authored Mar 3, 2024
1 parent ef47cf1 commit 7522457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mistral.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ async def conversation():

print("Assistant: Hello! How can I assist you today?")
while True:
user_input = input("User: ")
user_input = input("User: ").strip()
if user_input.lower() in ['exit', 'quit']:
print("\nThank you for using the Mistral AI toolkit. Have a great day!")
break
Expand Down

0 comments on commit 7522457

Please sign in to comment.