Keira James commited on
Commit
4d3f3d3
ยท
2 Parent(s): cb9643e 384392e

Fixed merge conflict

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -45,7 +45,7 @@ demo = gr.ChatInterface(
45
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
46
  gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)"),
47
  ],
48
- css="""
49
  /* Custom CSS to style the interface */
50
  .gradio-container {
51
  background-color: #222222; /* Dark background */
@@ -101,13 +101,14 @@ demo = gr.ChatInterface(
101
  .gradio-container .gradio-textbox input {
102
  font-size: 16px;
103
  }
104
-
105
  .gradio-container p {
106
  color: #bdbdbd; /* Light grey description text */
107
  text-align: center;
108
  font-size: 14px;
109
  }
110
- """
 
 
111
  )
112
 
113
  if __name__ == "__main__":
 
45
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
46
  gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)"),
47
  ],
48
+ css="""
49
  /* Custom CSS to style the interface */
50
  .gradio-container {
51
  background-color: #222222; /* Dark background */
 
101
  .gradio-container .gradio-textbox input {
102
  font-size: 16px;
103
  }
 
104
  .gradio-container p {
105
  color: #bdbdbd; /* Light grey description text */
106
  text-align: center;
107
  font-size: 14px;
108
  }
109
+ """,
110
+ title="Cuddly Chatbot ๐Ÿพ",
111
+ description="A sweet and friendly assistant for all your questions! ๐Ÿ’–",
112
  )
113
 
114
  if __name__ == "__main__":