File size: 514 Bytes
465b3b7
 
 
 
 
 
 
 
6c91425
465b3b7
d463146
465b3b7
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()