Lyte commited on
Commit
67c40b2
·
verified ·
1 Parent(s): eb3896f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -566,12 +566,12 @@ def create_interface():
566
  temperature_slider
567
  ],
568
  outputs=[board_display, status, reasoning_display],
569
- queue=False # Process player move immediately
570
  ).then( # Then process AI response with streaming
571
  fn=process_ai_response,
572
  inputs=[temperature_slider],
573
  outputs=[board_display, status, reasoning_display],
574
- streaming=True # Enable streaming for AI response
575
  )
576
 
577
  reset_btn.click(
 
566
  temperature_slider
567
  ],
568
  outputs=[board_display, status, reasoning_display],
569
+ #queue=False # Process player move immediately
570
  ).then( # Then process AI response with streaming
571
  fn=process_ai_response,
572
  inputs=[temperature_slider],
573
  outputs=[board_display, status, reasoning_display],
574
+ #streaming=True # Enable streaming for AI response
575
  )
576
 
577
  reset_btn.click(