state property

({int extractionCount, bool inProgress, bool initialized, String? lastSummarizedId, int tokensSinceLast, int toolCallsSinceLast}) get state

Current extraction state (read-only).

Implementation

({
  bool initialized,
  bool inProgress,
  int tokensSinceLast,
  int toolCallsSinceLast,
  int extractionCount,
  String? lastSummarizedId,
})
get state => (
  initialized: _state.initialized,
  inProgress: _state.extractionInProgress,
  tokensSinceLast: _state.tokensSinceLastExtraction,
  toolCallsSinceLast: _state.toolCallsSinceLastExtraction,
  extractionCount: _state.extractionCount,
  lastSummarizedId: _state.lastSummarizedMessageId,
);