call_transcript_kit 1.0.0
call_transcript_kit: ^1.0.0 copied to clipboard
A Dart package for parsing, segmenting, and analyzing call transcripts with spam detection and action item extraction.
example/call_transcript_kit_example.dart
import 'package:call_transcript_kit/call_transcript_kit.dart';
void main() {
const analyzer = SentimentAnalyzer();
final sentiment = analyzer.analyze('That sounds perfect, thank you so much!');
print('Sentiment: $sentiment');
}