Bsbell21 commited on
Commit
0f4af0c
·
1 Parent(s): e0aa9bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -34,10 +34,10 @@ if __name__ == "__main__":
34
  gr.Interface(
35
  make_inference,
36
  [
37
- gr.inputs.Textbox(lines=2, label="Product Name"),
38
- gr.inputs.Textbox(lines=5, label="Product Description"),
39
  ],
40
- gr.outputs.Textbox(label="Ad"),
41
  title="GenerAd-AI",
42
  description="GenerAd-AI is a generative model that generates ads for products.",
43
  ).launch()
 
34
  gr.Interface(
35
  make_inference,
36
  [
37
+ gr.Textbox(lines=2, label="Product Name"),
38
+ gr.Textbox(lines=5, label="Product Description"),
39
  ],
40
+ gr.Textbox(label="Ad"),
41
  title="GenerAd-AI",
42
  description="GenerAd-AI is a generative model that generates ads for products.",
43
  ).launch()