german354a commited on
Commit
f739898
·
verified ·
1 Parent(s): 87adb86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -70,11 +70,7 @@ body {
70
  """
71
 
72
  # Create a Gradio chat interface with custom CSS
73
- demo = gr.ChatInterface(
74
- title="My Chatbot", # Set the title here
75
- fn=respond,
76
- # ... (other parameters)
77
- )
78
  demo = gr.ChatInterface(
79
  fn=respond,
80
  additional_inputs=[
@@ -89,7 +85,8 @@ demo = gr.ChatInterface(
89
  label="Top-p (nucleus sampling)",
90
  ),
91
  ],
92
- css=custom_css
 
93
  )
94
 
95
  if __name__ == "__main__":
 
70
  """
71
 
72
  # Create a Gradio chat interface with custom CSS
73
+
 
 
 
 
74
  demo = gr.ChatInterface(
75
  fn=respond,
76
  additional_inputs=[
 
85
  label="Top-p (nucleus sampling)",
86
  ),
87
  ],
88
+ css=custom_css,
89
+ title="Chatbot Interface" # Aquí se añade el título
90
  )
91
 
92
  if __name__ == "__main__":