Update app.py
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ def predict(system_msg, inputs, top_p, temperature, chat_counter, chatbot=[], hi
|
|
56 |
payload = {
|
57 |
"model": "gpt-3.5-turbo",
|
58 |
"messages": messages, # Of the type of [{"role": "user", "content": f"{inputs}"}],
|
59 |
-
"temperature" : 0.
|
60 |
"top_p": 1.0,
|
61 |
"n" : 1,
|
62 |
"stream": True,
|
@@ -143,8 +143,8 @@ with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;}
|
|
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
|
|
|
56 |
payload = {
|
57 |
"model": "gpt-3.5-turbo",
|
58 |
"messages": messages, # Of the type of [{"role": "user", "content": f"{inputs}"}],
|
59 |
+
"temperature" : 0.1,
|
60 |
"top_p": 1.0,
|
61 |
"n" : 1,
|
62 |
"stream": True,
|
|
|
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
|