(self)
| 321 | return normalized_disabled |
| 322 | |
| 323 | def _get_version(self) -> str: |
| 324 | try: |
| 325 | from importlib.metadata import version |
| 326 | return version("codegraphcontext") |
| 327 | except Exception: |
| 328 | return "0.0.0-dev" |
| 329 | |
| 330 | def get_database_status(self) -> dict: |
| 331 | """Returns the current connection status of the Neo4j database.""" |