File size: 211 Bytes
d5bc519
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

def analyze_brushstroke(image):
    return "AI is analyzing the brushstroke of Van Gogh's style..."

demo = gr.Interface(fn=analyze_brushstroke, inputs="image", outputs="text")
demo.launch()