lollyope's picture
Create app.py
5fdbfb8 verified
raw
history blame
389 Bytes
import gradio as gr
def generate_caption(topic):
return f"🌾 OJA OKO STUDIO\n\n{topic} 🌱\nFresh, natural and straight from the source.\n\n#OjaOko #FarmToTable #NaijaFood"
iface = gr.Interface(
fn=generate_caption,
inputs="text",
outputs="text",
title="OJA OKO Caption Generator",
description="Generate captions for your farm & food content"
)
iface.launch()