reshav1 commited on
Commit
07b2da6
·
verified ·
1 Parent(s): 2e9675b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -23,9 +23,9 @@ def generate_response(user_input):
23
  # Start the chat loop
24
  while True:
25
  # Get user input
26
- line = input("Enter your input: ")
27
 
28
- if line.lower() == "quit":
29
  break
30
 
31
  # Generate response based on user input
 
23
  # Start the chat loop
24
  while True:
25
  # Get user input
26
+ uinput = input("Enter your input: ")
27
 
28
+ if uinput.lower() == "quit":
29
  break
30
 
31
  # Generate response based on user input