File size: 1,120 Bytes
aa07dbb
 
f3f10d4
 
 
 
 
aa07dbb
 
f3f10d4
 
 
 
 
 
 
 
 
 
 
 
 
c7a0ce6
aa07dbb
c7a0ce6
f3f10d4
aa07dbb
c7a0ce6
f3f10d4
807dd72
 
f3f10d4
 
 
 
 
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
import gradio as gr

# Define the nested dictionary of owners and their respective pets
owner_pets = {
    "Emily": {"David": "./David.jpg"},
    "Sasha": {"Kikou": "./Kikou.jpg"},
    # Add more owners and their pets as needed
}

# Define your function
def your_function(owner_name, pet_name):
    pets = owner_pets.get(owner_name)
    
    pet_image = None
    if pets and pet_name in pets:
        pet_image = pets[pet_name]
        
    return pet_image or "./download.jpeg"

# Define your Gradio interface
def your_gradio_function(owner_name, pet_name):
    image_path = your_function(owner_name, pet_name)
    return image_path

# Create the interface
interface = gr.Interface(fn=your_gradio_function, inputs=["text", "text"], outputs="image")

# Launch the interface
interface.launch()

if __name__ == "__main__":
    interface.inputs([{"label": "Owner Name", "type": "text"}, {"label": "Pet Name", "type": "text"}])
    interface.input("Owner Name").send_value("John Doe")
    interface.input("Pet Name").send_value("Doggo")
    output = interface.run().result()
    print(f"Image for Emily and David: {output}")