You are using SessionLocal() in Depends() they are not designed for async sessions. Try something like the following:
async def get_db():
async with SessionLocal() as session:
yield session
async def read_root(db: AsyncSession = Depends(get_db)):