2bf21c6 7c8d1a6 2bf21c6
1
2
3
4
5
6
7
8
import gradio as gr def respond(message,history): response = f"You said: {message}\ \nAnd I say I love learn AI Engineering with SuperDataScience!" return response gr.ChatInterface(fn=respond).launch()