Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -66,8 +66,6 @@ def update_random_seed():
|
|
66 |
client = Client("http://211.233.58.201:7971/")
|
67 |
return client.predict(api_name="/update_random_seed")
|
68 |
|
69 |
-
# (이전 import 구문들은 동일)
|
70 |
-
|
71 |
_TITLE = '''✨ 3D Llama Studio'''
|
72 |
_DESCRIPTION = '''
|
73 |
### Welcome to 3D Llama Studio - Your Advanced 3D Generation Platform
|
@@ -79,7 +77,6 @@ This platform offers two powerful features:
|
|
79 |
*Note: Both English and Korean prompts are supported (영어와 한글 프롬프트 모두 지원됩니다)*
|
80 |
'''
|
81 |
|
82 |
-
# Custom CSS for dark theme and enhanced UI
|
83 |
custom_css = """
|
84 |
.gradio-container {
|
85 |
background-color: #1a1a1a;
|
@@ -166,9 +163,8 @@ def launch():
|
|
166 |
|
167 |
with gr.Row():
|
168 |
seed_number = gr.Number(
|
169 |
-
label="Seed",
|
170 |
value=None,
|
171 |
-
placeholder="Random seed if empty",
|
172 |
elem_classes="input-box"
|
173 |
)
|
174 |
update_seed_button = gr.Button(
|
|
|
66 |
client = Client("http://211.233.58.201:7971/")
|
67 |
return client.predict(api_name="/update_random_seed")
|
68 |
|
|
|
|
|
69 |
_TITLE = '''✨ 3D Llama Studio'''
|
70 |
_DESCRIPTION = '''
|
71 |
### Welcome to 3D Llama Studio - Your Advanced 3D Generation Platform
|
|
|
77 |
*Note: Both English and Korean prompts are supported (영어와 한글 프롬프트 모두 지원됩니다)*
|
78 |
'''
|
79 |
|
|
|
80 |
custom_css = """
|
81 |
.gradio-container {
|
82 |
background-color: #1a1a1a;
|
|
|
163 |
|
164 |
with gr.Row():
|
165 |
seed_number = gr.Number(
|
166 |
+
label="Seed (Empty = Random)",
|
167 |
value=None,
|
|
|
168 |
elem_classes="input-box"
|
169 |
)
|
170 |
update_seed_button = gr.Button(
|