GarimaPuri01 commited on
Commit
b5eb0e6
·
verified ·
1 Parent(s): f3e2cec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -6,8 +6,6 @@ def chatbot(input_text):
6
  return "I'm doing well, thank you for asking."
7
  elif input_text.lower() == "bye":
8
  return "Goodbye! Have a great day."
9
- elif input_text.lower() == "What’s the weather like today in Ropar ?":
10
- return "The weather in Ropar today is sunny with a current temperature of around 18°C."
11
  else:
12
  return "I'm sorry, I don't understand. Could you please rephrase your question?."
13
 
 
6
  return "I'm doing well, thank you for asking."
7
  elif input_text.lower() == "bye":
8
  return "Goodbye! Have a great day."
 
 
9
  else:
10
  return "I'm sorry, I don't understand. Could you please rephrase your question?."
11