BigBros / app.py
Thomas Chardonnens
Add image input
499ab24
raw
history blame
245 Bytes
import gradio as gr
def check_image(image):
# Placeholder logic - replace with actual image processing
return True # or False based on your criteria
demo = gr.Interface(fn=check_image, inputs="image", outputs="boolean")
demo.launch()