Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -3080,16 +3080,6 @@ def create_interface():
|
|
3080 |
"""
|
3081 |
|
3082 |
with gr.Blocks(theme=gr.themes.Soft(), css=css, title="Screenplay Generator") as interface:
|
3083 |
-
gr.HTML("""
|
3084 |
-
<div class="main-header">
|
3085 |
-
<h1 class="header-title">🎬 AI Screenplay Generator</h1>
|
3086 |
-
<p class="header-description">
|
3087 |
-
Transform your ideas into professional screenplays for films, TV shows, and streaming series.
|
3088 |
-
Using industry-standard format and story structure to create compelling, producible scripts.
|
3089 |
-
</p>
|
3090 |
-
</div>
|
3091 |
-
""")
|
3092 |
-
|
3093 |
gr.HTML("""
|
3094 |
<style>
|
3095 |
.badges-container {
|
@@ -3122,7 +3112,7 @@ gr.HTML("""
|
|
3122 |
</style>
|
3123 |
|
3124 |
<div class="main-header">
|
3125 |
-
<h1 class="header-title"
|
3126 |
|
3127 |
<div class="badges-container">
|
3128 |
<a href="https://huggingface.co/spaces/fantaxy/AGI-LEADERBOARD" target="_blank">
|
@@ -3141,8 +3131,13 @@ gr.HTML("""
|
|
3141 |
<img src="https://img.shields.io/static/v1?label=OpenFree&message=BEST%20AI&color=%23d4a574&labelColor=%235a3e28&logo=huggingface&logoColor=%23faf8f5&style=for-the-badge" alt="badge">
|
3142 |
</a>
|
3143 |
</div>
|
|
|
|
|
|
|
|
|
|
|
3144 |
</div>
|
3145 |
-
""")
|
3146 |
# State management
|
3147 |
current_session_id = gr.State(None)
|
3148 |
|
|
|
3080 |
"""
|
3081 |
|
3082 |
with gr.Blocks(theme=gr.themes.Soft(), css=css, title="Screenplay Generator") as interface:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3083 |
gr.HTML("""
|
3084 |
<style>
|
3085 |
.badges-container {
|
|
|
3112 |
</style>
|
3113 |
|
3114 |
<div class="main-header">
|
3115 |
+
<h1 class="header-title">🎬 AI Screenplay Generator</h1>
|
3116 |
|
3117 |
<div class="badges-container">
|
3118 |
<a href="https://huggingface.co/spaces/fantaxy/AGI-LEADERBOARD" target="_blank">
|
|
|
3131 |
<img src="https://img.shields.io/static/v1?label=OpenFree&message=BEST%20AI&color=%23d4a574&labelColor=%235a3e28&logo=huggingface&logoColor=%23faf8f5&style=for-the-badge" alt="badge">
|
3132 |
</a>
|
3133 |
</div>
|
3134 |
+
|
3135 |
+
<p class="header-description">
|
3136 |
+
Transform your ideas into professional screenplays for films, TV shows, and streaming series.
|
3137 |
+
Using industry-standard format and story structure to create compelling, producible scripts.
|
3138 |
+
</p>
|
3139 |
</div>
|
3140 |
+
""")
|
3141 |
# State management
|
3142 |
current_session_id = gr.State(None)
|
3143 |
|