kaushikbar
commited on
Commit
·
5a1a372
1
Parent(s):
3b9d561
min dall-e
Browse files
app.py
CHANGED
@@ -105,12 +105,14 @@ with demo:
|
|
105 |
lines=3
|
106 |
)
|
107 |
run_button = gradio.Button(value='Generate Image').style(full_width=True)
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
|
|
113 |
)
|
|
|
114 |
|
115 |
with gradio.Column():
|
116 |
gradio.Markdown('## Settings')
|
|
|
105 |
lines=3
|
106 |
)
|
107 |
run_button = gradio.Button(value='Generate Image').style(full_width=True)
|
108 |
+
'''
|
109 |
+
output_image = gradio.Image(
|
110 |
+
value='examples/moai-statue.jpg',
|
111 |
+
label='Output Image',
|
112 |
+
type='file',
|
113 |
+
interactive=False
|
114 |
)
|
115 |
+
'''
|
116 |
|
117 |
with gradio.Column():
|
118 |
gradio.Markdown('## Settings')
|