useFrustrationDetection.ts 342 B

123456789
  1. // Auto-generated stub — replace with real implementation
  2. export function useFrustrationDetection(
  3. _messages: unknown[],
  4. _isLoading: boolean,
  5. _hasActivePrompt: boolean,
  6. _otherSurveyOpen: boolean,
  7. ): { state: 'closed' | 'open'; handleTranscriptSelect: () => void } {
  8. return { state: 'closed', handleTranscriptSelect: () => {} };
  9. }