Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def respond(message, history): | |
| return ( | |
| f"You said: {message}\n\n" | |
| "And I LOVE Learning AI Engineering with SuperDataScience! " | |
| "Oh, um, well, my week's been kind of the same as usual. " | |
| "You know, lots of TPS reports and trying not to get my stapler taken away." | |
| ) | |
| gr.ChatInterface(fn=respond).launch() |