Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -117,7 +117,7 @@ def generate(id_task, model_name, batch_count, batch_size, text, *args):
|
|
117 |
with gr.Blocks(analytics_enabled=False) as space:
|
118 |
with gr.Row():
|
119 |
with gr.Column(scale=80):
|
120 |
-
prompt = gr.Textbox(label="Prompt", elem_id="promptgen_prompt", show_label=False, lines=2, placeholder="Beginning of the prompt
|
121 |
with gr.Column(scale=10):
|
122 |
submit = gr.Button('Generate', elem_id="promptgen_generate", variant='primary')
|
123 |
|
@@ -153,7 +153,7 @@ with gr.Blocks(analytics_enabled=False) as space:
|
|
153 |
res_info = gr.HTML()
|
154 |
|
155 |
submit.click(
|
156 |
-
fn=generate
|
157 |
_js="submit_promptgen",
|
158 |
inputs=[model_selection, model_selection, batch_count, batch_size, prompt, min_length, max_length, num_beams, temperature, repetition_penalty, length_penalty, sampling_mode, top_k, top_p, ],
|
159 |
outputs=[res, res_info]
|
|
|
117 |
with gr.Blocks(analytics_enabled=False) as space:
|
118 |
with gr.Row():
|
119 |
with gr.Column(scale=80):
|
120 |
+
prompt = gr.Textbox(label="Prompt", elem_id="promptgen_prompt", show_label=False, lines=2, placeholder="Beginning of the prompt").style(container=False)
|
121 |
with gr.Column(scale=10):
|
122 |
submit = gr.Button('Generate', elem_id="promptgen_generate", variant='primary')
|
123 |
|
|
|
153 |
res_info = gr.HTML()
|
154 |
|
155 |
submit.click(
|
156 |
+
fn=generate,
|
157 |
_js="submit_promptgen",
|
158 |
inputs=[model_selection, model_selection, batch_count, batch_size, prompt, min_length, max_length, num_beams, temperature, repetition_penalty, length_penalty, sampling_mode, top_k, top_p, ],
|
159 |
outputs=[res, res_info]
|