prithivMLmods commited on
Commit
7c5ba0d
·
verified ·
1 Parent(s): 145d6e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -40,13 +40,10 @@ def generate(
40
  yield output
41
  return output
42
 
43
- mychatbot = gr.Chatbot(
44
- avatar_images=["./user.png", "./botm.png"], bubble_full_width=False, show_label=False, show_copy_button=True, likeable=True,)
45
-
46
  demo = gr.ChatInterface(
47
  fn=generate,
48
  chatbot=mychatbot,
49
- title="Hello! this is Mistral-7B-Instruct-v0.3",
50
  theme="xiaobaiyuan/theme_brief"
51
  )
52
 
 
40
  yield output
41
  return output
42
 
 
 
 
43
  demo = gr.ChatInterface(
44
  fn=generate,
45
  chatbot=mychatbot,
46
+ title="",
47
  theme="xiaobaiyuan/theme_brief"
48
  )
49