(agent_module_file_path: str)
| 68 | |
| 69 | |
| 70 | def _get_agent_module(agent_module_file_path: str): |
| 71 | file_path = os.path.join(agent_module_file_path, "__init__.py") |
| 72 | module_name = "agent" |
| 73 | return _import_from_path(module_name, file_path) |
| 74 | |
| 75 | |
| 76 | def get_default_metric_info( |
no test coverage detected