my-first-space / app.py
Cruzex's picture
Update app.py
0e21542 verified
Raw
History Blame Contribute Delete
234 Bytes
import gradio as gr
import spaces
@spaces.GPU
def respond(message,history):
response=f"You said: {message} And I say I love learning AI engineering with SuperDataScience!"
return response
gr.ChatInterface(fn=respond).launch()