mrfakename commited on
Commit
21c3200
·
verified ·
1 Parent(s): a71f3aa

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ ABOUT_TEXT = """
3
+ # Text-to-3D with TripoSR + SDXL
4
+
5
+ Commercially-viable text-to-3D model. Usage must comply with the SDXL license.
6
+
7
+ For image-to-3D, use [TripoSR](https://huggingface.co/spaces/stabilityai/TripoSR) directly.
8
+ """.strip()
9
+ with gr.Blocks() as demo:
10
+ gr.Markdown(ABOUT_TEXT)
11
+ demo.queue(api_open=False, default_concurrency_limit=20).launch(show_api=False)