RefalMachine commited on
Commit
f8fa3ba
·
verified ·
1 Parent(s): 5ebba10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -62,9 +62,9 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
62
  """
63
  options = ["3B", "7B (work in progress)"]
64
  demo = gr.ChatInterface(
 
65
  respond,
66
  additional_inputs=[
67
- gr.Radio(choices=options, label="Model:", value=options[0]),
68
  gr.Textbox(value="", label="System message"),
69
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
70
  gr.Slider(minimum=0.1, maximum=4.0, value=0.3, step=0.1, label="Temperature"),
 
62
  """
63
  options = ["3B", "7B (work in progress)"]
64
  demo = gr.ChatInterface(
65
+ gr.Radio(choices=options, label="Model:", value=options[0]),
66
  respond,
67
  additional_inputs=[
 
68
  gr.Textbox(value="", label="System message"),
69
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
70
  gr.Slider(minimum=0.1, maximum=4.0, value=0.3, step=0.1, label="Temperature"),