Falln87 commited on
Commit
9452b58
·
verified ·
1 Parent(s): bbbbd72

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import panel as pn
2
+ from transformers_agent_ui import TransformersAgentUI
3
+
4
+ if pn.state.served:
5
+ pn.extension("terminal", "notifications", notifications=True, design="bootstrap")
6
+ TransformersAgentUI().servable()