Relationship information structure
| 51 | |
| 52 | @dataclass |
| 53 | class RelationshipInfo: |
| 54 | """Relationship information structure""" |
| 55 | |
| 56 | repo_file_path: str |
| 57 | target_file_path: str |
| 58 | relationship_type: str |
| 59 | confidence_score: float |
| 60 | helpful_aspects: List[str] |
| 61 | potential_contributions: List[str] |
| 62 | usage_suggestions: str |
| 63 | |
| 64 | |
| 65 | def load_index_files_from_directory(indexes_directory: str) -> Dict[str, Dict]: |
no outgoing calls
no test coverage detected