(self)
| 257 | return normalized_disabled |
| 258 | |
| 259 | def _get_version(self) -> str: |
| 260 | try: |
| 261 | from importlib.metadata import version |
| 262 | return version("codegraphcontext") |
| 263 | except Exception: |
| 264 | return "0.0.0-dev" |
| 265 | |
| 266 | def get_database_status(self) -> dict: |
| 267 | """Returns the current connection status of the Neo4j database.""" |