Update app.py
Browse files
app.py
CHANGED
@@ -143,12 +143,12 @@ with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;}
|
|
143 |
|
144 |
#top_p, temperature
|
145 |
with gr.Accordion("", open=False):
|
146 |
-
|
147 |
-
|
148 |
chat_counter = gr.Number(value=0, visible=False, precision=0)
|
149 |
|
150 |
#Event handling
|
151 |
-
inputs.submit( predict, [system_msg, inputs, chat_counter, chatbot, state], [chatbot, state, chat_counter],) #openai_api_key
|
152 |
#b1.click( predict, [system_msg, inputs, top_p, temperature, chat_counter, chatbot, state], [chatbot, state, chat_counter, server_status_code],) #openai_api_key
|
153 |
|
154 |
#b1.click(reset_textbox, [], [inputs])
|
|
|
143 |
|
144 |
#top_p, temperature
|
145 |
with gr.Accordion("", open=False):
|
146 |
+
top_p = gr.Slider( minimum=-0, maximum=1.0, value=1.0, step=0.05, interactive=True, label="Top-p (nucleus sampling)",)
|
147 |
+
temperature = gr.Slider( minimum=-0, maximum=5.0, value=1.0, step=0.1, interactive=True, label="Temperature",)
|
148 |
chat_counter = gr.Number(value=0, visible=False, precision=0)
|
149 |
|
150 |
#Event handling
|
151 |
+
inputs.submit( predict, [system_msg, inputs, top_p, temperature, chat_counter, chatbot, state], [chatbot, state, chat_counter, server_status_code],) #openai_api_key
|
152 |
#b1.click( predict, [system_msg, inputs, top_p, temperature, chat_counter, chatbot, state], [chatbot, state, chat_counter, server_status_code],) #openai_api_key
|
153 |
|
154 |
#b1.click(reset_textbox, [], [inputs])
|