prithivMLmods commited on
Commit
6c6623e
1 Parent(s): 075e720

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -109,16 +109,17 @@ def respond(
109
 
110
  demo = gr.ChatInterface(
111
  respond,
 
112
  additional_inputs=[
113
  gr.Textbox(value="", label="System message", visible=False),
114
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens", visible=False),
115
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature", visible=False),
116
  gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-P", visible=False),
117
- gr.Dropdown(choices=list(mood_prompts.keys()), label="Mood", value="Casual")
118
  ],
119
  css=css,
120
  theme="allenai/gradio-theme",
121
  )
122
 
123
  if __name__ == "__main__":
124
- demo.launch()
 
109
 
110
  demo = gr.ChatInterface(
111
  respond,
112
+ gr.Dropdown(choices=list(mood_prompts.keys()), label="Mood", value="Casual"),
113
  additional_inputs=[
114
  gr.Textbox(value="", label="System message", visible=False),
115
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens", visible=False),
116
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature", visible=False),
117
  gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-P", visible=False),
118
+
119
  ],
120
  css=css,
121
  theme="allenai/gradio-theme",
122
  )
123
 
124
  if __name__ == "__main__":
125
+ demo.launch()