Nekochu commited on
Commit
b404cf6
1 Parent(s): ec9cfaf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -134,11 +134,13 @@ chat_interface = gr.ChatInterface(
134
  ],
135
  )
136
 
137
- with gr.Row():
138
- gr.DuplicateButton(value="GPU Ver", elem_id="duplicate-button")
139
- gr.HTML("""<a href="https://huggingface.co/spaces/Nekochu/Luminia-13B_SD_Prompt?duplicate=true" style="margin:0 0 0 8px; padding:2px 8px; border:1px solid; border-radius:4px; text-decoration:none; font-size:0.9em;">CPU Ver</a>""")
140
- chat_interface.render()
141
- gr.Markdown(LICENSE)
 
 
142
 
143
  if __name__ == "__main__":
144
  demo.queue(max_size=20).launch()
 
134
  ],
135
  )
136
 
137
+ with gr.Blocks(css="style.css") as demo:
138
+ gr.Markdown(DESCRIPTION)
139
+ with gr.Row():
140
+ gr.DuplicateButton(value="GPU Ver", elem_id="duplicate-button")
141
+ gr.HTML("""<a href="https://huggingface.co/spaces/Nekochu/Luminia-13B_SD_Prompt/tree/Luminia-13B-v3-GGUF?duplicate=true" style="margin:0 0 0 8px; padding:2px 8px; border:1px solid; border-radius:4px; text-decoration:none; font-size:0.9em;">CPU Ver</a>""")
142
+ chat_interface.render()
143
+ gr.Markdown(LICENSE)
144
 
145
  if __name__ == "__main__":
146
  demo.queue(max_size=20).launch()