Update app.py
Browse files
app.py
CHANGED
@@ -141,15 +141,15 @@ with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;}
|
|
141 |
with gr.Column(scale=3):
|
142 |
server_status_code = gr.Textbox(label="Status code from OpenAI server", )
|
143 |
|
144 |
-
|
145 |
with gr.Accordion("Parameters", 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,
|
152 |
-
b1.click( predict, [system_msg, inputs,
|
153 |
|
154 |
b1.click(reset_textbox, [], [inputs])
|
155 |
inputs.submit(reset_textbox, [], [inputs])
|
|
|
141 |
with gr.Column(scale=3):
|
142 |
server_status_code = gr.Textbox(label="Status code from OpenAI server", )
|
143 |
|
144 |
+
''' #top_p, temperature
|
145 |
with gr.Accordion("Parameters", 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, chatbot, state], [chatbot, state, server_status_code],) #openai_api_key
|
152 |
+
b1.click( predict, [system_msg, inputs, chatbot, state], [chatbot, state, server_status_code],) #openai_api_key
|
153 |
|
154 |
b1.click(reset_textbox, [], [inputs])
|
155 |
inputs.submit(reset_textbox, [], [inputs])
|