forked from watson-developer-cloud/unity-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleToneAnalyzerV3.cs
More file actions
147 lines (126 loc) · 4.76 KB
/
Copy pathExampleToneAnalyzerV3.cs
File metadata and controls
147 lines (126 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/**
* Copyright 2019 IBM Corp. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
using IBM.Watson.ToneAnalyzer.V3;
using IBM.Watson.ToneAnalyzer.V3.Model;
using IBM.Cloud.SDK.Utilities;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using IBM.Cloud.SDK;
using IBM.Cloud.SDK.Authentication;
using IBM.Cloud.SDK.Authentication.Iam;
namespace IBM.Watson.Examples
{
public class ExampleToneAnalyzerV3 : MonoBehaviour
{
#region PLEASE SET THESE VARIABLES IN THE INSPECTOR
[Space(10)]
[Tooltip("The IAM apikey.")]
[SerializeField]
private string iamApikey;
[Tooltip("The service URL (optional). This defaults to \"https://gateway.watsonplatform.net/assistant/api\"")]
[SerializeField]
private string serviceUrl;
[Tooltip("The version date with which you would like to use the service in the form YYYY-MM-DD.")]
[SerializeField]
private string versionDate;
#endregion
private ToneAnalyzerService service;
private string stringToTestTone = "This service enables people to discover and understand, and revise the impact of tone in their content. It uses linguistic analysis to detect and interpret emotional, social, and language cues found in text.";
private bool toneTested = false;
private bool toneChatTested = false;
private void Start()
{
LogSystem.InstallDefaultReactors();
Runnable.Run(CreateService());
}
private IEnumerator CreateService()
{
if (string.IsNullOrEmpty(iamApikey))
{
throw new IBMException("Plesae provide IAM ApiKey for the service.");
}
// Create credential and instantiate service
IamAuthenticator authenticator = new IamAuthenticator(apikey: iamApikey);
// Wait for tokendata
while (!authenticator.CanAuthenticate())
yield return null;
service = new ToneAnalyzerService(versionDate, authenticator);
if (!string.IsNullOrEmpty(serviceUrl))
{
service.SetServiceUrl(serviceUrl);
}
Runnable.Run(Examples());
}
private IEnumerator Examples()
{
ToneInput toneInput = new ToneInput()
{
Text = stringToTestTone
};
List<string> tones = new List<string>()
{
"emotion",
"language",
"social"
};
service.Tone(callback: OnTone, toneInput: toneInput, sentences: true, tones: tones, contentLanguage: "en", acceptLanguage: "en", contentType: "application/json");
while (!toneTested)
{
yield return null;
}
List<Utterance> utterances = new List<Utterance>()
{
new Utterance()
{
Text = stringToTestTone,
User = "User 1"
}
};
service.ToneChat(callback: OnToneChat, utterances: utterances, contentLanguage: "en", acceptLanguage: "en");
while (!toneChatTested)
{
yield return null;
}
Log.Debug("ExampleToneAnalyzerV3.Examples()", "Examples complete!");
}
private void OnTone(DetailedResponse<ToneAnalysis> response, IBMError error)
{
if (error != null)
{
Log.Debug("ExampleToneAnalyzerV3.OnTone()", "Error: {0}: {1}", error.StatusCode, error.ErrorMessage);
}
else
{
Log.Debug("ExampleToneAnalyzerV3.OnTone()", "{0}", response.Response);
}
toneTested = true;
}
private void OnToneChat(DetailedResponse<UtteranceAnalyses> response, IBMError error)
{
if (error != null)
{
Log.Debug("ExampleToneAnalyzerV3.OnToneChat()", "Error: {0}: {1}", error.StatusCode, error.ErrorMessage);
}
else
{
Log.Debug("ExampleToneAnalyzerV3.OnToneChat()", "{0}", response.Response);
}
toneChatTested = true;
}
}
}