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

Added more debugging statements

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -528,10 +528,13 @@ def do_html_video_speak(words_to_speak, azure_language):
528
 
529
 
530
  def update_selected_tools(widget, state, llm):
531
- print('debugging - update_selected_tools detected')
532
  if widget:
533
- print('debugging - widget detected')
 
 
534
  state = widget
 
 
535
  chain, express_chain, memory = load_chain(state, llm)
536
  return state, llm, chain, express_chain
537
 
 
528
 
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