alex-mindspace commited on
Commit
fb38482
·
1 Parent(s): f3323f6

Upload 3 files

Browse files
gradio_app/interacton_with_swarm.py CHANGED
@@ -218,5 +218,5 @@ def read_swarm_logs():
218
  final_out = "Swarm is starting up..."
219
  return final_out
220
 
221
- def run_swarm():
222
  run_swarm()
 
218
  final_out = "Swarm is starting up..."
219
  return final_out
220
 
221
+ def execute_swarm():
222
  run_swarm()
gradio_app/interface.py CHANGED
@@ -18,10 +18,6 @@ def display_logs():
18
  def display_output():
19
  return read_swarm_output()
20
 
21
- def run_the_swarm():
22
- # Launch the app in the background
23
- run_swarm()
24
-
25
  def swarm_interface(swarm_role, swarm_global_goal, swarm_goals, n_managers, n_analysts, n_googlers):
26
  global PROC
27
  # please, don't judge me for this hardcoding. it's 3am and it's the first time i use gradio =)))
@@ -36,7 +32,7 @@ def swarm_interface(swarm_role, swarm_global_goal, swarm_goals, n_managers, n_an
36
  ]
37
  set_swarm_agents_config(agents_config)
38
 
39
- t = threading.Thread(target=run_the_swarm)
40
  t.start()
41
  print("Swarm is running")
42
  SWARM_IS_RUNNING = True
 
18
  def display_output():
19
  return read_swarm_output()
20
 
 
 
 
 
21
  def swarm_interface(swarm_role, swarm_global_goal, swarm_goals, n_managers, n_analysts, n_googlers):
22
  global PROC
23
  # please, don't judge me for this hardcoding. it's 3am and it's the first time i use gradio =)))
 
32
  ]
33
  set_swarm_agents_config(agents_config)
34
 
35
+ t = threading.Thread(target=execute_swarm)
36
  t.start()
37
  print("Swarm is running")
38
  SWARM_IS_RUNNING = True