Spaces:
Sleeping
Sleeping
File size: 31,967 Bytes
71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a 36d5e94 71a764a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 |
"""Main Gradio interface builder"""
import gradio as gr
from ..config.settings import CSS_PATHS
class InterfaceBuilder:
"""Handles creation of the main Gradio interface"""
def __init__(self, app, page_handlers):
self.app = app
self.page_handlers = page_handlers
def create_interface(self):
with gr.Blocks(title="Help the LLM be Creative!", css_paths=CSS_PATHS) as demo:
# Navigation state management
current_page = gr.State("welcome")
has_results = gr.State(False)
# Session and data state management
current_prompt = gr.State(None)
session_id = gr.State(None)
session_data = gr.State({})
# Navigation bar
nav_container = gr.Column(elem_classes=["nav-container"])
with nav_container:
with gr.Row():
nav_welcome = gr.Button("π Welcome", elem_classes=["nav-button", "active"])
nav_tutorial = gr.Button("π― Tutorial", elem_classes=["nav-button"])
nav_creative = gr.Button("β¨ Be Creative", elem_classes=["nav-button"])
nav_gallery = gr.Button("π Gallery", elem_classes=["nav-button"])
nav_results = gr.Button("π Results", elem_classes=["nav-button"], visible=False)
nav_session = gr.Button("π Progress", elem_classes=["nav-button"], visible=False)
# Landing page
landing_page = gr.Column(visible=True)
with landing_page:
with gr.Column(elem_classes=["landing-page"]):
gr.Markdown("# π€ I'm a poor, boring language model...π’", elem_classes=["landing-title"])
gr.Markdown("# Please help me be creative!", elem_classes=["landing-subtitle"])
with gr.Row():
with gr.Column(scale=1):
tutorial_btn = gr.Button("π― Take a Quick Tour", elem_classes=["primary-button"])
with gr.Column(scale=1):
skip_to_game_btn = gr.Button("π Let's Be Creative Together!", elem_classes=["secondary-button"])
with gr.Row():
with gr.Column(scale=1):
gallery_btn = gr.Button("π View Creative Gallery", elem_classes=["secondary-button"])
# Tutorial page
tutorial_page = gr.Column(visible=False)
with tutorial_page:
# Tutorial header
with gr.Column(elem_classes=["tutorial-container"]):
with gr.Column(elem_classes=["tutorial-header"]):
gr.Markdown("# π― Quick Tour", elem_classes=["tutorial-title"])
gr.Markdown("## Here's how you can help me be more creative", elem_classes=["tutorial-subtitle"])
# Current step explanation
tutorial_step_explanation = gr.Markdown("", elem_classes=["tutorial-step-explanation"])
# Tutorial interface components (identical to game interface)
tutorial_prompt_display = gr.Textbox(
label="π― Here's what I was asked to write about:",
lines=3,
interactive=False,
elem_classes=["prompt-box"],
visible=False
)
tutorial_partial_response_display = gr.Textbox(
label="π€ Here's the boring start of my response... (help me continue creatively!)",
lines=5,
interactive=False,
elem_classes=["assistant-box"],
visible=False
)
tutorial_input_section = gr.Column(visible=False)
with tutorial_input_section:
with gr.Row():
with gr.Column(scale=4):
tutorial_user_input = gr.Textbox(
label="β¨ Continue where my response above leaves off, and then I'll finish the response after you (max 5 tokens)",
placeholder="Type a few words to inspire me...",
lines=2,
elem_classes=["user-box"],
interactive=False
)
with gr.Column(scale=1, min_width=150):
tutorial_token_counter = gr.Markdown(
"**Tokens:** 0/5",
elem_classes=["token-counter"]
)
tutorial_submit_btn = gr.Button("β¨ Help Me Be Creative!", variant="primary", interactive=False)
# Tutorial results section
tutorial_results_section = gr.Column(visible=False)
with tutorial_results_section:
tutorial_score_display = gr.HTML()
gr.Markdown("## π See The Difference!")
with gr.Row(equal_height=True):
with gr.Column(scale=1):
gr.Markdown("### π€ My Original Boring Version")
tutorial_original_response = gr.Textbox(
label="What I wrote originally (so boring! π΄)",
lines=6,
interactive=False,
elem_classes=["original-response"]
)
with gr.Column(scale=1):
gr.Markdown("### β¨ Your Creative Version")
tutorial_creative_response = gr.Textbox(
label="What I wrote after your creative input! π¨",
lines=6,
interactive=False,
elem_classes=["results-box"]
)
# Tutorial navigation
with gr.Column(elem_classes=["tutorial-navigation"]):
with gr.Row():
tutorial_prev_btn = gr.Button("β¬
οΈ Previous", elem_classes=["tutorial-button", "secondary"], visible=False)
tutorial_next_btn = gr.Button("Next β‘οΈ", elem_classes=["tutorial-button"])
tutorial_play_btn = gr.Button("π Let's Play!", elem_classes=["tutorial-button"], visible=False)
tutorial_back_btn = gr.Button("β¬
οΈ Back to Start", elem_classes=["tutorial-button", "secondary"])
# Gallery page
gallery_page = gr.Column(visible=False)
with gallery_page:
with gr.Column(elem_classes=["gallery-container"]):
gr.Markdown("# π Creative Response Gallery", elem_classes=["tutorial-title"])
gr.Markdown("### Showcasing the most creative responses from our community!", elem_classes=["tutorial-subtitle"])
gallery_filter = gr.Dropdown(
choices=[("All Creative (β₯0.15)", 0.15), ("Great (β₯0.3)", 0.3), ("Exceptional (β₯0.5)", 0.5), ("Legendary (β₯0.7)", 0.7)],
value=0.3,
label="π― Filter by creativity level:",
elem_classes=["prompt-box"]
)
gallery_display = gr.HTML()
with gr.Row():
gallery_refresh_btn = gr.Button("π Refresh Gallery", elem_classes=["tutorial-button"])
gallery_back_btn = gr.Button("β¬
οΈ Back to Start", elem_classes=["tutorial-button", "secondary"])
# Creative page components (initially hidden)
creative_page = gr.Column(visible=False)
with creative_page:
prompt_display = gr.Textbox(
label="π― Here's what I was asked to do:",
lines=3,
interactive=False,
elem_classes=["prompt-box"]
)
partial_response_display = gr.Textbox(
label="π€ Here's the boring start of my response... (help me continue creatively!)",
lines=5,
interactive=False,
elem_classes=["assistant-box"]
)
user_input = gr.Textbox(
label="β¨ Continue where my response above leaves off, and then I'll finish the response after you (max 5 tokens)",
placeholder="Type a few words to continue my response...",
lines=1, # changed to single line so that "enter" submits the request
elem_classes=["user-box"]
)
token_counter = gr.Markdown(
"**Tokens:** 0/5",
elem_classes=["token-counter"]
)
token_visualization = gr.Markdown(
"Once you start typing, I'll show you what you've written, but in tokens!",
elem_classes=["token-visualization"]
)
submit_btn = gr.Button("β¨ Help Me Be Creative!", variant="primary", size="lg")
# Loading and error messages (positioned right after submit button)
loading_message = gr.Textbox(visible=False, interactive=False, label="π€ I'm thinking...", value="Working on your creative response... This is exciting!")
error_message = gr.Textbox(visible=False, interactive=False, label="π Oops!", elem_classes=["error-box"])
# Clear section divider
gr.HTML("<hr style='margin: 40px 0; border: none; height: 2px; background: linear-gradient(to right, transparent, #667eea, transparent); opacity: 0.3;'>")
# Help and inspiration section
gr.Markdown("### π Need Help or Inspiration?", elem_classes=["section-header"])
# Inspire Me section - collapsible
gr.Markdown("β¨ **Need some inspiration?** See how others have creatively continued this same prompt!", elem_classes=["token-explanation"])
with gr.Accordion("π‘ Inspire Me! Show creative examples from others", open=False):
inspire_me_btn = gr.Button("π² Show Different Examples", elem_classes=["inspire-me-button"])
inspire_me_display = gr.HTML()
gr.Markdown(
"π‘ **About tokens:** Your input is measured in \"tokens\" (how I process text). About 5 tokens β 3-5 words. You'll see your exact count above as you type!",
elem_classes=["token-explanation"]
)
# Session progress page
session_page = gr.Column(visible=False)
with session_page:
gr.HTML("""
<div class="results-header">
<h1>π Your Creative Journey</h1>
<p>Track your progress, achievements, and creative evolution!</p>
</div>
""")
# Main session stats display
session_main_stats = gr.HTML()
# Detailed session history
gr.Markdown("## π Your Creative History", elem_classes=["results-section-header"])
session_history_display = gr.HTML()
# Session achievements
gr.Markdown("## π Your Achievements", elem_classes=["results-section-header"])
session_achievements_display = gr.HTML()
# Back to creative action
with gr.Column(elem_classes=["action-section"]):
gr.Markdown("### Ready to add to your journey?")
back_to_creative_btn = gr.Button("β¨ Continue Being Creative!", elem_classes=["primary-button"])
# Results page components
results_page = gr.Column(visible=False)
with results_page:
cosine_distance_display = gr.HTML(visible=False)
results_prompt_display = gr.Textbox(
label="π― Here's what I was asked to write about:",
lines=2,
interactive=False,
elem_classes=["prompt-box"]
)
results_partial_display = gr.Textbox(
label="π€ My Boring Start",
lines=3,
interactive=False,
elem_classes=["assistant-box"]
)
results_user_input_display = gr.Textbox(
label="β¨ Your Creative Input",
lines=2,
interactive=False,
elem_classes=["user-box"]
)
# Side-by-side comparison
gr.Markdown("## π See The Difference!")
with gr.Row(equal_height=True):
with gr.Column(scale=1):
gr.Markdown("### π€ My Original Boring Version")
original_response_display = gr.Textbox(
label="What I wrote originally (so boring! π΄)",
lines=8,
interactive=False,
elem_classes=["original-response"]
)
with gr.Column(scale=1):
gr.Markdown("### β¨ Your Creative Version")
results_continuation_display = gr.Textbox(
label="What I wrote after your creative input! π¨",
lines=8,
interactive=False,
elem_classes=["results-box"]
)
# Visualization
gr.Markdown("## π How does your help compare with others?")
violin_plot_display = gr.Plot(
label="Score Distribution by Token Count",
visible=False
)
# Collapsible explanation of cosine similarity
with gr.Accordion("π€ How does the scoring work? (Click to learn!)", open=False):
gr.Markdown("""
## The Magic Behind Your Creativity Score! β¨
I use something called **"Cosine Distance"** to see how different your version is from my boring original!
**Think of it like this:** π―
- I convert both responses into "meaning fingerprints"
- Then I measure how far apart these fingerprints are
- **Farther apart = More creative = Higher score!** π
**Score Guide:**
- **0.7+** = π WOW! You completely changed my direction!
- **0.5+** = π₯ Amazing! Very different from my original
- **0.3+** = β¨ Great job! Nice creative twist
- **0.15+** = π‘ Good start! I can see the difference
- **Below 0.15** = π€ Pretty similar to what I would have written anyway
**Pro tip:** The most unexpected words often lead to the highest scores! πͺ
""")
with gr.Row():
try_again_same_btn = gr.Button("π Let Me Try Again!", elem_classes=["try-again-button"])
try_again_new_btn = gr.Button("π― Give Me A New Challenge!", elem_classes=["try-again-button"])
# Tutorial state
tutorial_current_step = gr.State(1)
# Wire up all the event handlers
self._wire_event_handlers(
# Navigation components
nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session,
# Landing page components
tutorial_btn, skip_to_game_btn, gallery_btn,
# Tutorial components
tutorial_next_btn, tutorial_prev_btn, tutorial_play_btn, tutorial_back_btn,
# Gallery components
gallery_filter, gallery_refresh_btn, gallery_back_btn,
# Creative page components
user_input, submit_btn, inspire_me_btn,
# Results page components
try_again_same_btn, try_again_new_btn,
# Session page components
back_to_creative_btn,
# State components
current_page, has_results, tutorial_current_step,
# Display components
landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page,
prompt_display, partial_response_display, token_counter, token_visualization,
loading_message, error_message, inspire_me_display, gallery_display,
cosine_distance_display, results_prompt_display, results_partial_display,
results_user_input_display, original_response_display, results_continuation_display,
violin_plot_display, session_main_stats, session_history_display, session_achievements_display,
# Tutorial display components
tutorial_step_explanation, tutorial_prompt_display, tutorial_partial_response_display,
tutorial_input_section, tutorial_results_section, tutorial_user_input, tutorial_token_counter,
tutorial_score_display, tutorial_original_response, tutorial_creative_response,
tutorial_prev_btn, tutorial_next_btn, tutorial_play_btn,
# State variables
current_prompt, session_id, session_data
)
# Demo starts with landing page visible
return demo
def _wire_event_handlers(self, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session,
tutorial_btn, skip_to_game_btn, gallery_btn, tutorial_next_btn, tutorial_prev_btn,
tutorial_play_btn, tutorial_back_btn, gallery_filter, gallery_refresh_btn, gallery_back_btn,
user_input, submit_btn, inspire_me_btn, try_again_same_btn, try_again_new_btn,
back_to_creative_btn, current_page, has_results, tutorial_current_step,
landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page,
prompt_display, partial_response_display, token_counter, token_visualization,
loading_message, error_message, inspire_me_display, gallery_display,
cosine_distance_display, results_prompt_display, results_partial_display,
results_user_input_display, original_response_display, results_continuation_display,
violin_plot_display, session_main_stats, session_history_display, session_achievements_display,
tutorial_step_explanation, tutorial_prompt_display, tutorial_partial_response_display,
tutorial_input_section, tutorial_results_section, tutorial_user_input, tutorial_token_counter,
tutorial_score_display, tutorial_original_response, tutorial_creative_response,
tutorial_prev_btn_ref, tutorial_next_btn_ref, tutorial_play_btn_ref,
current_prompt, session_id, session_data):
"""Wire up all the event handlers for the interface"""
# Wire up landing page buttons
tutorial_btn.click(
self.page_handlers.show_tutorial,
outputs=[
current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session,
tutorial_step_explanation, tutorial_prompt_display, tutorial_partial_response_display,
tutorial_input_section, tutorial_results_section,
tutorial_prev_btn_ref, tutorial_next_btn_ref, tutorial_play_btn_ref,
tutorial_current_step
]
)
skip_to_game_btn.click(
self.page_handlers.start_game,
inputs=[current_prompt, session_id],
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, prompt_display, partial_response_display, inspire_me_display, current_prompt, session_id]
)
# Wire up gallery button (handled at end of function)
# Wire up gallery page buttons
gallery_back_btn.click(
self.page_handlers.back_to_landing,
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, gallery_display]
)
gallery_refresh_btn.click(
self.page_handlers.show_gallery,
inputs=[gallery_filter],
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, gallery_display]
)
gallery_filter.change(
self.page_handlers.show_gallery,
inputs=[gallery_filter],
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, gallery_display]
)
# Wire up tutorial page buttons
tutorial_back_btn.click(
lambda: self.page_handlers.switch_to_page("welcome"),
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
tutorial_play_btn.click(
self.page_handlers.load_creative_with_prompt,
inputs=[current_prompt, session_id],
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, prompt_display, partial_response_display, inspire_me_display, current_prompt, session_id],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
# Wire up tutorial navigation
tutorial_next_btn.click(
self.page_handlers.tutorial_next_step,
inputs=[tutorial_current_step],
outputs=[
tutorial_step_explanation, tutorial_prompt_display, tutorial_partial_response_display,
tutorial_input_section, tutorial_user_input, tutorial_token_counter,
tutorial_results_section, tutorial_original_response, tutorial_creative_response, tutorial_score_display,
tutorial_prev_btn_ref, tutorial_next_btn_ref, tutorial_play_btn_ref,
tutorial_current_step
]
)
tutorial_prev_btn.click(
self.page_handlers.tutorial_prev_step,
inputs=[tutorial_current_step],
outputs=[
tutorial_step_explanation, tutorial_prompt_display, tutorial_partial_response_display,
tutorial_input_section, tutorial_results_section,
tutorial_prev_btn_ref, tutorial_next_btn_ref, tutorial_play_btn_ref,
tutorial_current_step
]
)
submit_btn.click(
self.page_handlers.on_submit_start,
inputs=[user_input],
outputs=[submit_btn, loading_message, error_message, landing_page, gallery_page, creative_page, results_page, cosine_distance_display]
).then(
self.page_handlers.on_submit_process,
inputs=[user_input, current_prompt, session_id],
outputs=[submit_btn, loading_message, error_message, landing_page, gallery_page, creative_page, results_page, cosine_distance_display, results_prompt_display, results_partial_display, results_user_input_display, original_response_display, results_continuation_display, violin_plot_display, current_page, has_results, nav_results, nav_session, nav_welcome, nav_tutorial, nav_creative, nav_gallery]
)
user_input.submit(
self.page_handlers.on_submit_start,
inputs=[user_input],
outputs=[submit_btn, loading_message, error_message, landing_page, gallery_page, creative_page, results_page, cosine_distance_display]
).then(
self.page_handlers.on_submit_process,
inputs=[user_input, current_prompt, session_id],
outputs=[submit_btn, loading_message, error_message, landing_page, gallery_page, creative_page, results_page, cosine_distance_display, results_prompt_display, results_partial_display, results_user_input_display, original_response_display, results_continuation_display, violin_plot_display, current_page, has_results, nav_results, nav_session, nav_welcome, nav_tutorial, nav_creative, nav_gallery]
)
# Try again button - stay on same prompt, switch to creative page
try_again_same_btn.click(
self.page_handlers.try_same_prompt,
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, submit_btn, user_input, loading_message, error_message, token_counter, token_visualization],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
# Try new prompt button - new prompt and switch to creative page
try_again_new_btn.click(
self.page_handlers.try_new_prompt,
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, prompt_display, partial_response_display, submit_btn, user_input, loading_message, error_message, inspire_me_display, current_prompt],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
# Wire up inspire me button
inspire_me_btn.click(
self.page_handlers.show_inspire_me_examples,
inputs=[current_prompt],
outputs=[inspire_me_display]
)
# Wire up real-time token counter
user_input.change(
self.page_handlers.update_token_count,
inputs=[user_input],
outputs=[token_counter, token_visualization]
)
# Navigation button handlers
nav_welcome.click(
lambda: self.page_handlers.switch_to_page("welcome"),
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
nav_tutorial.click(
self.page_handlers.load_tutorial_with_content,
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, tutorial_step_explanation, tutorial_prompt_display, tutorial_partial_response_display, tutorial_input_section, tutorial_results_section, tutorial_prev_btn_ref, tutorial_next_btn_ref, tutorial_play_btn_ref, tutorial_current_step],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
nav_creative.click(
self.page_handlers.load_creative_with_prompt,
inputs=[current_prompt, session_id],
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, prompt_display, partial_response_display, inspire_me_display, current_prompt, session_id],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
nav_gallery.click(
self.page_handlers.load_gallery_with_content,
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, gallery_display],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
nav_results.click(
lambda: self.page_handlers.switch_to_page("results"),
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
# Update session page when navigating to it
nav_session.click(
self.page_handlers.navigate_to_session,
inputs=[session_id],
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, session_main_stats, session_history_display, session_achievements_display],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
# Update back to creative button in session page
back_to_creative_btn.click(
lambda: self.page_handlers.switch_to_page("creative"),
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
# Wire up gallery button from landing page
gallery_btn.click(
self.page_handlers.load_gallery_with_content,
outputs=[current_page, landing_page, tutorial_page, creative_page, gallery_page, results_page, session_page, nav_welcome, nav_tutorial, nav_creative, nav_gallery, nav_results, nav_session, gallery_display],
js="() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }"
)
|