tdurzynski commited on
Commit
79166c4
·
verified ·
1 Parent(s): 740859e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -141,7 +141,7 @@ group_chat = GroupChat(
141
  agents=[food_recognizer, size_estimator, nutrition_fetcher, orchestrator],
142
  messages=[],
143
  max_round=4,
144
- select_speaker=custom_select_speaker # Use custom speaker selection instead of LLM
145
  )
146
  manager = GroupChatManager(groupchat=group_chat)
147
 
 
141
  agents=[food_recognizer, size_estimator, nutrition_fetcher, orchestrator],
142
  messages=[],
143
  max_round=4,
144
+ speaker_selection_method=custom_select_speaker # Use custom speaker selection instead of LLM
145
  )
146
  manager = GroupChatManager(groupchat=group_chat)
147