Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| import spaces | |
| 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() | |