Spaces:
Runtime error
Runtime error
File size: 369 Bytes
173bce5 cd42433 1af3d03 cb75873 cd42433 1af3d03 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
interface_options = {
"layout": "vertical",
"width": 700,
"title": "Text to Image Prompt Generator",
"description": "Generate beautiful images from text prompts.",
"inputs": gr.Textbox(),
"outputs": gr.Image()
}
gr.Interface.fn("models/succinctly/text2image-prompt-generator", interface_options=interface_options).launch()
|