MCPcopy Index your code
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
36def is_complex_module(components: dict[str, any], core_component_ids: list[str]) -> bool:
37 files = set()
38 for component_id in core_component_ids:
39 if component_id in components:
40 files.add(components[component_id].file_path)
41
42 result = len(files) > 1
43
44 return result
45
46
47# ------------------------------------------------------------

Callers 3

run_module_agentMethod · 0.90

Calls 1

addMethod · 0.80

Tested by

no test coverage detected