Update app.py
Browse files
app.py
CHANGED
@@ -277,8 +277,8 @@ with gr.Blocks(title="Media Generation and Search Explorer") as demo:
|
|
277 |
together_text_to_image_output = gr.Image(label="Generated Image (URL)", type="filepath", interactive=False)
|
278 |
|
279 |
together_text_to_image_button.click(
|
280 |
-
fn=
|
281 |
-
inputs=together_text_to_image_prompt,
|
282 |
outputs=together_text_to_image_output,
|
283 |
)
|
284 |
|
|
|
277 |
together_text_to_image_output = gr.Image(label="Generated Image (URL)", type="filepath", interactive=False)
|
278 |
|
279 |
together_text_to_image_button.click(
|
280 |
+
fn=together_text_to_image,
|
281 |
+
inputs=[together_text_to_image_prompt, together_text_to_image_width, together_text_to_image_height],
|
282 |
outputs=together_text_to_image_output,
|
283 |
)
|
284 |
|