Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -195,7 +195,7 @@ with gr.Blocks() as demo:
|
|
195 |
save = gr.Checkbox(label="Download Generated Tweets CSV? (Y/n)", value=True)
|
196 |
with gr.Accordion("Additional Parameters", open=False):
|
197 |
num_responses = gr.Slider(label= "Number of total fake Tweets to generate",minimum=20, maximum=500, step=5)
|
198 |
-
n = gr.Slider(label="Number of Tweets to return per API call (smaller = More randomized answers)", minimum=1, maximum=50, step=1)
|
199 |
system_prompt = gr.Dropdown(label="",
|
200 |
value=BotSimulator.assistant_prompt,
|
201 |
choices=[
|
|
|
195 |
save = gr.Checkbox(label="Download Generated Tweets CSV? (Y/n)", value=True)
|
196 |
with gr.Accordion("Additional Parameters", open=False):
|
197 |
num_responses = gr.Slider(label= "Number of total fake Tweets to generate",minimum=20, maximum=500, step=5)
|
198 |
+
n = gr.Slider(label="Number of Tweets to return per API call (smaller = More randomized answers)", value=10, minimum=1, maximum=50, step=1)
|
199 |
system_prompt = gr.Dropdown(label="",
|
200 |
value=BotSimulator.assistant_prompt,
|
201 |
choices=[
|