Dagfinn1962 commited on
Commit
fb45241
1 Parent(s): 0ff705e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -3
app.py CHANGED
@@ -1,7 +1,13 @@
1
  import gradio as gr
 
 
 
 
 
 
 
 
 
2
 
3
- def greet(name):
4
- return "Hello we have moved the app. <p><hr></p> You will find a advanced FREE Webui automatic 1111 application at <br> https;//www.aibabe.art/free/magicprompter.php " + name + "!!"
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  iface.launch()
 
1
  import gradio as gr
2
+ with gr.Blocks(theme='pikto/theme@>=0.0.1,<0.0.3') as demo:
3
+ with gr.Row():
4
+ with gr.Column(scale=6):
5
+ model = gr.Dropdown(interactive=True,value="absolutereality_v181.safetensors [3d9d4d2b]", show_label=True, label="Stable Diffusion Checkpoint", choices=prodia_client.list_models())
6
+
7
+ with gr.Column(scale=1):
8
+ gr.Markdown(elem_id="powered-by-prodia", value="AUTOMATIC1111 Stable Diffusion Web UI<br>Powered by [Prodia](https://prodia.com)<br>
9
+ This app is Online and used at http://www.aibabe.art <br> Try out our stable diffusion apps for free !
10
+ <a href='https://www.aibabe.art'><img src='https://aibabe.art/images/coffe.png'></a>"),
11
 
 
 
12
 
 
13
  iface.launch()