my-first-space / app.py
Sunkat's picture
Upload app.py
a375f2a verified
Raw
History Blame Contribute Delete
330 Bytes
import gradio as gr
def respond(message, history):
# Here you would typically call your AI model to generate a response based on the message and history
response = f"You said: {message}\
\nAnd I say I love learning AI engineering with SuperDataScience!"
return response
gr.ChatInterface(fn=respond).launch()