File tree Expand file tree Collapse file tree 5 files changed +17
-7
lines changed
pca-ui/src/www/src/routes/Dashboard Expand file tree Collapse file tree 5 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.1.1] - 2022-01-07
10+ ### Fixed
11+ - Athena queries broken due to image storage path
12+ - Recordings processed by Transcribe standard (not Call Analytics) fail to show up in the UI
13+
914## [ 0.1.0] - 2021-12-17
1015### Added
1116- Initial release
1217
13- [ Unreleased ] : https://github.com/aws-samples/amazon-transcribe-post-call-analytics/compare/v0.1.0...develop
18+ [ Unreleased ] : https://github.com/aws-samples/amazon-transcribe-post-call-analytics/compare/v0.1.1...develop
19+ [ 0.1.1 ] : https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.1.1
1420[ 0.1.0 ] : https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.1.0
Original file line number Diff line number Diff line change 1- 0.1.0
1+ 0.1.1
Original file line number Diff line number Diff line change 11AWSTemplateFormatVersion: "2010-09-09"
22
3- Description: Amazon Transcribe Post Call Analytics - PCA (v0.1)
3+ Description: Amazon Transcribe Post Call Analytics - PCA (v0.1.1 )
44
55Parameters:
66
@@ -122,12 +122,15 @@ Parameters:
122122 OutputBucketParsedResults:
123123 Type: String
124124 Default: parsedFiles
125- Description: Folder within the output S3 bucket where parsed results are written to
125+ Description: Folder within the output S3 bucket where parsed results are written
126126
127127 SpeakerNames:
128128 Type: String
129- Default: Caller | Agent
130- Description: Default tags used for speaker names, separated by " | "
129+ Default: Customer | Agent
130+ AllowedValues:
131+ - Customer | Agent
132+ - Agent | Customer
133+ Description: Speaker label assignment order
131134
132135 SpeakerSeparationType:
133136 Type: String
Original file line number Diff line number Diff line change @@ -265,6 +265,7 @@ def create_output_conversation_analytics(self):
265265 speaker_label = speaker ["Speaker" ]
266266 speaker_time = sum ((segment .segmentEndTime - segment .segmentStartTime ) for segment in self .speechSegmentList if segment .segmentSpeaker == speaker_label )
267267 resultsHeaderInfo ["SpeakerTime" ][speaker_label ] = {"TotalTimeSecs" : speaker_time }
268+ resultsHeaderInfo ["CombinedAnalyticsGraph" ] = "no_chart_standard_mode"
268269
269270 # Detected custom entity summaries next
270271 customEntityList = []
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ function Dashboard({ setAlert }) {
272272 ) : (
273273 < img
274274 src = { data ?. ConversationAnalytics . CombinedAnalyticsGraph }
275- alt = "a chart displaying the loudness of the agent and customer over time"
275+ alt = "Chart displaying the loudness of the agent and customer over time (available with Transcribe Call Analytics only) "
276276 > </ img >
277277 ) }
278278 </ Card >
You can’t perform that action at this time.
0 commit comments