Update app.py
Browse files
app.py
CHANGED
@@ -594,8 +594,7 @@ with gr.Blocks(title="Enhanced Ensemble Meme & Text Analyzer", theme=gr.themes.S
|
|
594 |
input_type = gr.Dropdown(
|
595 |
choices=["Text Only", "Image Only", "URL", "Text + Image"],
|
596 |
value="Text Only",
|
597 |
-
label="π₯ Input Type"
|
598 |
-
info="Select the type of content you want to analyze"
|
599 |
)
|
600 |
|
601 |
with gr.Row():
|
@@ -607,13 +606,11 @@ with gr.Blocks(title="Enhanced Ensemble Meme & Text Analyzer", theme=gr.themes.S
|
|
607 |
)
|
608 |
image_input = gr.Image(
|
609 |
label="πΌοΈ Image Input",
|
610 |
-
type="pil"
|
611 |
-
info="Upload memes, screenshots, or social media images"
|
612 |
)
|
613 |
url_input = gr.Textbox(
|
614 |
label="π URL Input",
|
615 |
-
placeholder="Enter social media URL (Twitter, Reddit, etc.)..."
|
616 |
-
info="Paste links to posts, images, or web content"
|
617 |
)
|
618 |
|
619 |
with gr.Column(scale=1):
|
|
|
594 |
input_type = gr.Dropdown(
|
595 |
choices=["Text Only", "Image Only", "URL", "Text + Image"],
|
596 |
value="Text Only",
|
597 |
+
label="π₯ Input Type"
|
|
|
598 |
)
|
599 |
|
600 |
with gr.Row():
|
|
|
606 |
)
|
607 |
image_input = gr.Image(
|
608 |
label="πΌοΈ Image Input",
|
609 |
+
type="pil"
|
|
|
610 |
)
|
611 |
url_input = gr.Textbox(
|
612 |
label="π URL Input",
|
613 |
+
placeholder="Enter social media URL (Twitter, Reddit, etc.)..."
|
|
|
614 |
)
|
615 |
|
616 |
with gr.Column(scale=1):
|