commonlemon commited on
Commit
ecfc0b7
·
verified ·
1 Parent(s): be85c9b

initial commit

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr #abbreviate gradio
2
+
3
+ # defining chatbot
4
+ chatbot = gr.ChatInterface() #using gradio to quickly build a chatbot UI (w/ convo history & user input)
5
+ chatbot.launch() #launch chatbot