Spaces:
Running
Running
File size: 1,813 Bytes
2945767 7d9a730 2945767 7d9a730 2945767 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
import gradio as gr
import requests
from PIL import Image
from io import BytesIO
# A simple function to simulate different sets of images for each option
def show_images(option):
image_data = [
{
"title": "Option 1",
"caption": "Images for Option 1",
"urls": [
"https://via.placeholder.com/150/1",
"https://via.placeholder.com/150/2",
"https://via.placeholder.com/150/3",
"https://via.placeholder.com/150/4",
"https://via.placeholder.com/150/5",
],
},
{
"title": "Option 2",
"caption": "Images for Option 2",
"urls": [
"https://via.placeholder.com/150/6",
"https://via.placeholder.com/150/7",
"https://via.placeholder.com/150/8",
"https://via.placeholder.com/150/9",
"https://via.placeholder.com/150/10",
],
},
# Add more dictionaries for other options with their respective title, caption, and image URLs
]
selected_option = image_data[int(option) - 1]
images = []
for url in selected_option["urls"]:
response = requests.get(url)
img = Image.open(BytesIO(response.content))
images.append(img)
return selected_option["title"], selected_option["caption"], images
# Define the Gradio interface
iface = gr.Interface(
fn=show_images,
inputs=gr.inputs.Radio(["1", "2"], label="Choose an option"),
outputs=[
gr.outputs.Textbox(label="Title"),
gr.outputs.Textbox(label="Caption"),
gr.outputs.Image(type="pil", label="Images"),
],
output_type="list",
examples_per_option=None,
)
# Launch the Gradio interface
iface.launch() |