Alfie Grace commited on
Commit
642a11c
·
1 Parent(s): 2c1cc9b

Removed debugging statements

Browse files
Files changed (1) hide show
  1. app.py +0 -5
app.py CHANGED
@@ -529,12 +529,7 @@ def do_html_video_speak(words_to_speak, azure_language):
529
 
530
  def update_selected_tools(widget, state, llm):
531
  if widget:
532
- print('debugging')
533
- print(state)
534
- print('-' * 40)
535
  state = widget
536
- print(state)
537
- print('=' * 40)
538
  chain, express_chain, memory = load_chain(state, llm)
539
  return state, llm, chain, express_chain
540
 
 
529
 
530
  def update_selected_tools(widget, state, llm):
531
  if widget:
 
 
 
532
  state = widget
 
 
533
  chain, express_chain, memory = load_chain(state, llm)
534
  return state, llm, chain, express_chain
535