Spaces:
Runtime error
Runtime error
PPP commited on
Commit ·
a898c5e
1
Parent(s): a86fd2d
fix:ssr_mode参数传递
Browse files- .claude/settings.local.json +8 -0
- app.py +1 -1
.claude/settings.local.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"permissions": {
|
| 3 |
+
"allow": [
|
| 4 |
+
"Bash(gh run:*)",
|
| 5 |
+
"Bash(pip install:*)"
|
| 6 |
+
]
|
| 7 |
+
}
|
| 8 |
+
}
|
app.py
CHANGED
|
@@ -1758,6 +1758,7 @@ def build_app() -> gr.Blocks:
|
|
| 1758 |
|
| 1759 |
with gr.Blocks(
|
| 1760 |
title="StoryWeaver - 交互式叙事系统",
|
|
|
|
| 1761 |
) as app:
|
| 1762 |
app.css = APP_UI_CSS
|
| 1763 |
|
|
@@ -2003,5 +2004,4 @@ if __name__ == "__main__":
|
|
| 2003 |
secondary_hue="blue",
|
| 2004 |
),
|
| 2005 |
css=APP_UI_CSS,
|
| 2006 |
-
ssr_mode=False,
|
| 2007 |
)
|
|
|
|
| 1758 |
|
| 1759 |
with gr.Blocks(
|
| 1760 |
title="StoryWeaver - 交互式叙事系统",
|
| 1761 |
+
ssr_mode=False,
|
| 1762 |
) as app:
|
| 1763 |
app.css = APP_UI_CSS
|
| 1764 |
|
|
|
|
| 2004 |
secondary_hue="blue",
|
| 2005 |
),
|
| 2006 |
css=APP_UI_CSS,
|
|
|
|
| 2007 |
)
|