mxmxmxmxjn commited on
Commit
4a2cf0e
·
verified ·
1 Parent(s): 554c7d3

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
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()