Spaces:
Running
Running
~UI
Browse files
app.py
CHANGED
@@ -117,7 +117,7 @@ with gr.Blocks(css=css) as demo:
|
|
117 |
prompt_template = gr.Dropdown(label="Set a custom insruction for the chatbot:", choices=list(prompt_templates.keys()))
|
118 |
prompt_template_preview = gr.Markdown(elem_id="prompt_template_preview")
|
119 |
with gr.Accordion("Advanced parameters", open=False):
|
120 |
-
temperature = gr.Slider(minimum=0, maximum=2.0, value=0.7, step=0.1, label="Temperature
|
121 |
max_tokens = gr.Slider(minimum=100, maximum=4096, value=1000, step=1, label="Max tokens per response")
|
122 |
context_length = gr.Slider(minimum=1, maximum=10, value=2, step=1, label="Context length", info="Number of previous messages to send to the chatbot. Be careful with high values, it can blow up the token budget quickly.")
|
123 |
|
|
|
117 |
prompt_template = gr.Dropdown(label="Set a custom insruction for the chatbot:", choices=list(prompt_templates.keys()))
|
118 |
prompt_template_preview = gr.Markdown(elem_id="prompt_template_preview")
|
119 |
with gr.Accordion("Advanced parameters", open=False):
|
120 |
+
temperature = gr.Slider(minimum=0, maximum=2.0, value=0.7, step=0.1, label="Temperature", info="Higher = more creative/chaotic")
|
121 |
max_tokens = gr.Slider(minimum=100, maximum=4096, value=1000, step=1, label="Max tokens per response")
|
122 |
context_length = gr.Slider(minimum=1, maximum=10, value=2, step=1, label="Context length", info="Number of previous messages to send to the chatbot. Be careful with high values, it can blow up the token budget quickly.")
|
123 |
|