not-lain commited on
Commit
d8f2c7f
β€’
1 Parent(s): 44d2b59

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -53,5 +53,9 @@ def chat(message, history):
53
 
54
 
55
 
56
- demo = gr.ChatInterface(fn=chat, examples=[["Write me a poem about Machine Learning."]], title="gemma 2b-it")
 
 
 
 
57
  demo.launch()
 
53
 
54
 
55
 
56
+ demo = gr.ChatInterface(fn=chat,
57
+ chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="bubble", bubble_full_width=False),
58
+ theme="Soft",
59
+ examples=[["Write me a poem about Machine Learning."]],
60
+ title="gemma 2b-it")
61
  demo.launch()