(path: str)
| 68 | return path.replace("\\\\", "/").replace("\\", "/") |
| 69 | |
| 70 | def convert_to_windows_path(path: str) -> str: |
| 71 | return path.replace("/", "\\") |
| 72 | |
| 73 | def extract_model_file_names_with_node_info(json_data: Union[Dict, List], is_windows: bool = False) -> List[ModelFileWithNodeInfo]: |
| 74 | file_names = [] |