1
0
Fork 0

added an if-statement for ending loop

Instead of pressing Ctrl+c to end program. It is easier and less messy for ending chatbot
This commit is contained in:
naa 2023-04-27 23:48:55 -04:00 committed by GitHub
parent 25428d58d5
commit 81480d0c7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,8 @@ chat = []
while True:
prompt = input("You: ")
if prompt == 'q':
break
response = you.Completion.create(
prompt=prompt,
chat=chat)
@ -33,4 +34,4 @@ while True:
print("Bot:", response["response"])
chat.append({"question": prompt, "answer": response["response"]})
```
```