Tafar commited on
Commit
a1dc8a7
·
1 Parent(s): 88127b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -138,5 +138,13 @@ with gr.Blocks() as demo:
138
  )
139
  clear.click(lambda: None, None, chatbot, queue=False)
140
 
 
 
 
 
 
 
 
 
141
  demo.queue()
142
  demo.launch(share=True)
 
138
  )
139
  clear.click(lambda: None, None, chatbot, queue=False)
140
 
141
+ from chatbot_ui import ChatbotUI
142
+ import tkinter as tk
143
+
144
+ if __name__ == "__main__":
145
+ root = tk.Tk()
146
+ chatbot_ui = ChatbotUI(root)
147
+ root.mainloop()
148
+
149
  demo.queue()
150
  demo.launch(share=True)