File size: 228 Bytes
99a5269
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr


def respond(message, history):
    response = f"You said: {message} \n And I say I love learning AI Engineering with SuperDataScience!"
    return response


gr.ChatInterface(fn=respond). launch()