MCPcopy Create free account
hub / github.com/FSoft-AI4Code/CodeWiki / is_complex_module

Function is_complex_module

codewiki/src/be/utils.py:36–44  ·  view source on GitHub ↗
(components: dict[str, any], core_component_ids: list[str])

Source from the content-addressed store, hash-verified

34# ------------------------------------------------------------
35
36
37def is_complex_module(components: dict[str, any], core_component_ids: list[str]) -> bool:
38 files = set()
39 for component_id in core_component_ids:
40 if component_id in components:
41 files.add(components[component_id].file_path)
42
43 result = len(files) > 1
44
45 return result
46
47

Callers 3

run_module_agentMethod · 0.90

Calls 1

addMethod · 0.80

Tested by

no test coverage detected