File size: 515 Bytes
465b3b7
 
453ddc6
5b66678
465b3b7
a46bded
465b3b7
a46bded
465b3b7
a46bded
465b3b7
d463146
465b3b7
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio
def chatbot(input_text):
    
   if input_text.lower() == "hello":
        return "Hello, how can i help you."
   elif input_text.lower() == "how are you":
        return "I'm doing well, thank you for asking."
   elif input_text.lower() == "bye":
        return "Goodbye! Have a great day."
   else:    
        return "I'm sorry, I don't understand. Could you please rephrase your question?."
        
demo = gradio.Interface(fn=chatbot, inputs="text", outputs="text", title="Chatbot")
demo.launch()