wasContextLimitReached method

bool wasContextLimitReached()

Implementation

bool wasContextLimitReached() {
  final nCtx = _contextParams?.nCtx ?? 2048;
  return _nPos >= nCtx - 2;
}