(agent_configs_dict, **kwargs)
| 63 | |
| 64 | |
| 65 | def init_agents(agent_configs_dict, **kwargs): |
| 66 | agents_dict = {} |
| 67 | for actor_id, cfg in agent_configs_dict.items(): |
| 68 | AgentClass = load_entry_point(cfg['entry_point']) |
| 69 | agents_dict[actor_id] = AgentClass(cfg['path_to_conf_file'], **kwargs) |
| 70 | return agents_dict |
| 71 | |
| 72 | |
| 73 | def parse_routes_file(routes_xml_filename): |
nothing calls this directly
no test coverage detected