Skip to content

Commit 1d12853

Browse files
committed
save progress
1 parent 25b1ac7 commit 1d12853

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/call-center/csharp.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,17 @@ Follow these steps to run post-call transcription analysis from an audio file.
3232
dotnet build
3333
```
3434
1. Run the application with your preferred command line arguments. See [usage and arguments](#usage-and-arguments) for the available options.
35+
3536
Here's an example that transcribes from an example audio file at [GitHub](https://github.com/Azure-Samples/cognitive-services-speech-sdk/raw/master/scenarios/call-center/sampledata/Call1_separated_16k_health_insurance.wav):
3637
```dotnetcli
3738
dotnet run --languageKey YourResourceKey --languageEndpoint YourResourceEndpoint --speechKey YourResourceKey --speechRegion YourResourceRegion --input "https://github.com/Azure-Samples/cognitive-services-speech-sdk/raw/master/scenarios/call-center/sampledata/Call1_separated_16k_health_insurance.wav" --stereo --output summary.json
3839
```
40+
3941
If you already have a transcription for input, here's an example that only requires a Language resource:
4042
```dotnetcli
4143
dotnet run --languageKey YourResourceKey --languageEndpoint YourResourceEndpoint --jsonInput "YourTranscriptionFile.json" --stereo --output summary.json
4244
```
45+
4346
Replace `YourResourceKey` with your Cognitive Services resource key, replace `YourResourceRegion` with your Cognitive Services resource [region](~/articles/cognitive-services/speech-service/regions.md) (such as `eastus`), and replace `YourResourceEndpoint` with your Cognitive Services endpoint. Make sure that the paths specified by `--input` and `--output` are valid. Otherwise you must change the paths.
4447
> [!IMPORTANT]
4548
> Remember to remove the key from your code when you're done, and never post it publicly. For production, use a secure way of storing and accessing your credentials like [Azure Key Vault](../../../../../key-vault/general/overview.md). See the Cognitive Services [security](../../../../cognitive-services-security.md) article for more information.

articles/cognitive-services/Speech-Service/includes/quickstarts/call-center/example-output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The console output shows the full conversation and summary. Here's an example of
1212
```output
1313
Conversation summary:
1414
issue: Customer wants to sign up for insurance.
15-
resolution: Customer was advised that customer would be contacted by the agent to confirm their application.
15+
resolution: Customer was advised that customer would be contacted by the insurance company.
1616
```
1717

1818
If you specify the `--output FILE` optional [argument](/azure/cognitive-services/speech-service/call-center-quickstart#usage-and-arguments), a JSON version of the results are written to the file. The file output is a combination of the JSON responses from the [batch transcription](/azure/cognitive-services/speech-service/batch-transcription) (Speech), [sentiment](/azure/cognitive-services/language-service/sentiment-opinion-mining/overview) (Language), and [conversation summarization](/azure/cognitive-services/language-service/summarization/overview?tabs=conversation-summarization) (Language) APIs.
@@ -55,7 +55,7 @@ The `conversationAnalyticsResults` property contains a JSON object with the resu
5555
},
5656
{
5757
"aspect": "resolution",
58-
"text": "Customer was advised that customer would be contacted by the agent to confirm their application"
58+
"text": "Customer was advised that customer would be contacted by the insurance company"
5959
}
6060
],
6161
"warnings": []

0 commit comments

Comments
 (0)