Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -120,16 +120,7 @@ with gr.Blocks(css=css) as app:
|
|
| 120 |
height = gr.Slider(label="Height", minimum=256, maximum=1536, value=1024)
|
| 121 |
guidance_scale = gr.Slider(label="Guidance Scale", minimum=0.1, maximum=20, value=3)
|
| 122 |
examples = gr.Examples(examples=["coffeeshop website logo", "bio food website logo", "car Selling website logo"], inputs=logo_input)
|
| 123 |
-
|
| 124 |
-
gr.HTML("<h2>Generated Examples</h2>")
|
| 125 |
-
gr.Markdown("""
|
| 126 |
-
| **Preview Image** | **Used Prompt** | **Size** | **Guidance Scale** |
|
| 127 |
-
|-------------------|--------------------------------|-----------|--------------------|
|
| 128 |
-
|  | Coffeeshop website logo | 1024x1024 | 3 |
|
| 129 |
-
|  | Bio food website logo | 1024x1024 | 3 |
|
| 130 |
-
|  | Car Selling website logo | 1024x1024 | 3 |
|
| 131 |
-
""")
|
| 132 |
-
|
| 133 |
with gr.Column(scale=3):
|
| 134 |
gr.HTML("<h1><center>Magical AI Logo Generator</h1><center>")
|
| 135 |
generate_button = gr.Button("Generate")
|
|
@@ -139,9 +130,16 @@ with gr.Blocks(css=css) as app:
|
|
| 139 |
inputs=[logo_input, width, height, guidance_scale],
|
| 140 |
outputs=[image_output]
|
| 141 |
)
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
|
| 146 |
gr.Markdown("""
|
| 147 |
---
|
|
@@ -150,7 +148,7 @@ with gr.Blocks(css=css) as app:
|
|
| 150 |
|
| 151 |
**Github**: [https://github.com/pacnimo/](https://github.com/pacnimo/)
|
| 152 |
|
| 153 |
-
**Description**: Magical AI Logo Generator is Free and Easy to Use. Create
|
| 154 |
|
| 155 |
**Footer**: © 2024 by [pacnimo](https://github.com/pacnimo/). All rights reserved.
|
| 156 |
""")
|
|
|
|
| 120 |
height = gr.Slider(label="Height", minimum=256, maximum=1536, value=1024)
|
| 121 |
guidance_scale = gr.Slider(label="Guidance Scale", minimum=0.1, maximum=20, value=3)
|
| 122 |
examples = gr.Examples(examples=["coffeeshop website logo", "bio food website logo", "car Selling website logo"], inputs=logo_input)
|
| 123 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
with gr.Column(scale=3):
|
| 125 |
gr.HTML("<h1><center>Magical AI Logo Generator</h1><center>")
|
| 126 |
generate_button = gr.Button("Generate")
|
|
|
|
| 130 |
inputs=[logo_input, width, height, guidance_scale],
|
| 131 |
outputs=[image_output]
|
| 132 |
)
|
| 133 |
+
|
| 134 |
+
with gr.Row():
|
| 135 |
+
gr.HTML("<h2>Generated Examples</h2>")
|
| 136 |
+
gr.Markdown("""
|
| 137 |
+
| **Preview Image** | **Used Prompt** | **Size** | **Guidance Scale** |
|
| 138 |
+
|-------------------|--------------------------------|-----------|--------------------|
|
| 139 |
+
|  | Coffeeshop website logo | 1024x1024 | 3 |
|
| 140 |
+
|  | Bio food website logo | 1024x1024 | 3 |
|
| 141 |
+
|  | Car Selling website logo | 1024x1024 | 3 |
|
| 142 |
+
""")
|
| 143 |
|
| 144 |
gr.Markdown("""
|
| 145 |
---
|
|
|
|
| 148 |
|
| 149 |
**Github**: [https://github.com/pacnimo/](https://github.com/pacnimo/)
|
| 150 |
|
| 151 |
+
**Description**: Magical AI Logo Generator is Free and Easy to Use. Create an AI Website Logo for any Niche. 1 Click Logo Generator.
|
| 152 |
|
| 153 |
**Footer**: © 2024 by [pacnimo](https://github.com/pacnimo/). All rights reserved.
|
| 154 |
""")
|