acecalisto3 commited on
Commit
6e3a841
·
verified ·
1 Parent(s): 6fe60e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -208,7 +208,7 @@ with gr.Blocks() as iface:
208
  clear = gr.Button("Clear")
209
 
210
  agent_dropdown = gr.Dropdown(label="Agents", choices=agents, value=agents[0])
211
- sys_prompt = gr.Textbox(label="System Prompt", max_lines=1)
212
  temperature = gr.Slider(label="Temperature", value=0.65, minimum=0.0, maximum=2.0, step=0.01)
213
  max_new_tokens = gr.Slider(label="Max new tokens", value=8000, minimum=0, maximum=8000, step=64)
214
  top_p = gr.Slider(label="Top-p (nucleus sampling)", value=0.90, minimum=0.0, maximum=1, step=0.05)
 
208
  clear = gr.Button("Clear")
209
 
210
  agent_dropdown = gr.Dropdown(label="Agents", choices=agents, value=agents[0])
211
+ sys_prompt = gr.Textbox(label="System Prompt")
212
  temperature = gr.Slider(label="Temperature", value=0.65, minimum=0.0, maximum=2.0, step=0.01)
213
  max_new_tokens = gr.Slider(label="Max new tokens", value=8000, minimum=0, maximum=8000, step=64)
214
  top_p = gr.Slider(label="Top-p (nucleus sampling)", value=0.90, minimum=0.0, maximum=1, step=0.05)