Skip to content

Commit 3ce2a6c

Browse files
committed
Merge branch 'develop' v0.1.1
2 parents 761f211 + a56f9eb commit 3ce2a6c

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.1.1

pca-main.template

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AWSTemplateFormatVersion: "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

55
Parameters:
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

pca-server/src/pca/pca-aws-sf-process-turn-by-turn.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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 = []

pca-ui/src/www/src/routes/Dashboard/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)