(self)
| 31 | KB_DATABASE_URL_ENV = "POSTGRES_URL" |
| 32 | |
| 33 | def __init__(self): |
| 34 | self.async_engine = None |
| 35 | self.AsyncSession = None |
| 36 | self.langgraph_pool = None |
| 37 | self._initialized = False |
| 38 | |
| 39 | def initialize(self): |
| 40 | """初始化数据库连接""" |
nothing calls this directly
no outgoing calls
no test coverage detected