Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -239,7 +239,7 @@ with gr.Blocks() as demo:
|
|
239 |
topic = gr.Textbox(label="Enter the topic to Generate tweets (Ex: \"The Earth is Flat\")")
|
240 |
save = gr.Checkbox(label="Download Generated Tweets CSV? (Y/n)", value=True)
|
241 |
with gr.Accordion("Additional Parameters", open=False):
|
242 |
-
num_responses = gr.Slider(label= "Number of total fake Tweets to generate", value=20, minimum=
|
243 |
n = gr.Slider(label="Number of Tweets to return per API call (smaller = More randomized answers)", value=1, minimum=1, maximum=50, step=1)
|
244 |
system_prompt = gr.Dropdown(label="Select the system prompt for the model (This is what Open AI uses to assist the model in text generation):",
|
245 |
value=BotSimulator.assistant_prompt,
|
|
|
239 |
topic = gr.Textbox(label="Enter the topic to Generate tweets (Ex: \"The Earth is Flat\")")
|
240 |
save = gr.Checkbox(label="Download Generated Tweets CSV? (Y/n)", value=True)
|
241 |
with gr.Accordion("Additional Parameters", open=False):
|
242 |
+
num_responses = gr.Slider(label= "Number of total fake Tweets to generate", value=20, minimum=10, maximum=500, step=5)
|
243 |
n = gr.Slider(label="Number of Tweets to return per API call (smaller = More randomized answers)", value=1, minimum=1, maximum=50, step=1)
|
244 |
system_prompt = gr.Dropdown(label="Select the system prompt for the model (This is what Open AI uses to assist the model in text generation):",
|
245 |
value=BotSimulator.assistant_prompt,
|