wip: 2026-08-11 工作树快照(docs/memory/h5.py/scripts 等 447 项未评审改动,安全提交到 feat 分支)

This commit is contained in:
Simon
2026-08-11 09:59:44 +08:00
parent 6be361fb63
commit f2fd4fa012
447 changed files with 273482 additions and 1386 deletions
+18
View File
@@ -0,0 +1,18 @@
import asyncio
import sys
sys.path.insert(0, '/app')
async def test():
from app.services.neo4j_client import get_neo4j_client
client = await get_neo4j_client()
print(f'Neo4j client: {client}')
if client:
try:
healthy = await client.health_check()
print(f'Health check: {healthy}')
except Exception as e:
print(f'Health check error: {e}')
else:
print('Neo4j client is None - connection failed')
asyncio.run(test())