import spaces import gradio as gr @spaces.GPU def _dummy(): pass def respond(message, history): return f"You said: {message}\nAnd I say I love learning AI Engineering" gr.ChatInterface(fn=respond).launch()