TejAndrewsACC commited on
Commit
cd56e6d
·
verified ·
1 Parent(s): 091c7a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -45,8 +45,6 @@ def respond(
45
  """
46
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
47
  """
48
- theme = gr.themes.Monochrome()
49
-
50
  demo = gr.ChatInterface(
51
  respond,
52
  additional_inputs=[
@@ -58,6 +56,7 @@ demo = gr.ChatInterface(
58
  value=0.95,
59
  step=0.05,
60
  label="Top-p (nucleus sampling)",
 
61
  ),
62
  ],
63
  )
 
45
  """
46
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
47
  """
 
 
48
  demo = gr.ChatInterface(
49
  respond,
50
  additional_inputs=[
 
56
  value=0.95,
57
  step=0.05,
58
  label="Top-p (nucleus sampling)",
59
+ theme=gr.themes.Monochrome()
60
  ),
61
  ],
62
  )