Update app.py
Browse files
app.py
CHANGED
|
@@ -300,8 +300,8 @@ with gr.Blocks(theme="bethecloud/storj_theme", css="#process_btn {background-col
|
|
| 300 |
store_flag = gr.Checkbox(label="Store data",value=True, interactive=True, info="If you agree to store data for research and development use:")
|
| 301 |
single_data = gr.JSON(visible=False)
|
| 302 |
with gr.Column(scale=3):
|
| 303 |
-
engine = gr.Dropdown(choices=['gpt-3.5-turbo','
|
| 304 |
-
label="Engine", value="
|
| 305 |
reset_btn = gr.Button(value='RESET')
|
| 306 |
#examples = gr.Examples(examples=EXAMPLES, inputs=[input_question])
|
| 307 |
|
|
|
|
| 300 |
store_flag = gr.Checkbox(label="Store data",value=True, interactive=True, info="If you agree to store data for research and development use:")
|
| 301 |
single_data = gr.JSON(visible=False)
|
| 302 |
with gr.Column(scale=3):
|
| 303 |
+
engine = gr.Dropdown(choices=['gpt-3.5-turbo','gpt-3.5-turbo-instruct', 'text-davinci-002', 'text-curie-001', 'text-babbage-001', 'text-ada-001'],
|
| 304 |
+
label="Engine", value="gpt-3.5-turbo-instruct", interactive=True, info="Choose the engine and have a try!")
|
| 305 |
reset_btn = gr.Button(value='RESET')
|
| 306 |
#examples = gr.Examples(examples=EXAMPLES, inputs=[input_question])
|
| 307 |
|