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:
parent
25428d58d5
commit
81480d0c7e
1 changed files with 3 additions and 2 deletions
|
@ -25,7 +25,8 @@ chat = []
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
prompt = input("You: ")
|
prompt = input("You: ")
|
||||||
|
if prompt == 'q':
|
||||||
|
break
|
||||||
response = you.Completion.create(
|
response = you.Completion.create(
|
||||||
prompt=prompt,
|
prompt=prompt,
|
||||||
chat=chat)
|
chat=chat)
|
||||||
|
|
Loading…
Reference in a new issue