Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def respond(message, history):
|
| 4 |
+
response = f"You said: {message}\
|
| 5 |
+
\n And I say I love learning AI engineering with superdatascience!"
|
| 6 |
+
return response
|
| 7 |
+
|
| 8 |
+
gr.ChatInterface(fn=respond).launch()
|