HaruthaiAi's picture
Create app.py
d5bc519 verified
raw
history blame
211 Bytes
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()