在我的ExampleStreaming.cs
脚本中,一旦用户话语被识别为final
,我就将其发送到Watson Assistant
服务和Tone Analyzer
。因为我将每个服务的脚本保持原样,所以我必须在每个脚本内进行调用才能访问其他服务。您可以在下面看到我对Tone Analyzer
的调用(.SendToneAnalysis
方法):
private void OnRecognize(SpeechRecognitionEvent result, Dictionary<string, object> customData)
{
blah blah blah . . .
/// Only send the recognized speech utterance to the
/// Assistant once we know the user has stopped talking.
if (res.final)
{
string _conversationString = alt.transcript;
Runnable.Run( StopRecording(1f) ); // Stop the microphone from listening.
/// Message.
Dictionary<string, object> input = new Dictionary<string, object>
{
["text"] = _conversationString
};
MessageRequest messageRequest = new MessageRequest()
{
Input = input,
Context = _Context
};
_exampleAssistantV1_script.SendMessageAssistant(messageRequest);
_exampleToneAnalyzer.SendToneAnalysis(_conversationString);
. . .
在我的ExampleToneAnalyzer.cs
脚本中,我简单地调用了事件处理方法,这些方法旨在联系服务并处理成功与失败:
public void SendToneAnalysis(string conversationString)
{
_service.GetToneAnalyze(OnGetToneAnalyze, OnFail, conversationString);
}
这些调用通常是使用StartCoroutines
进行的,特别是在Watson Unity SDK中,有一个专门的Runnable.Run
,它本质上是一个帮助类,用于运行协程而不必继承{{1 }}。
我的问题是,在某些情况下,我对服务的简单方法调用是否可能有问题,或者只是错误的编程或错误的编程,还是完全可以使用该方法而不是如下所示的方法?
MonoBehavior
答案 0 :(得分:1)
没问题。 Runnable.Run()最终如下调用StartCoroutine()。
public Routine(IEnumerator a_enumerator)
{
_enumerator = a_enumerator;
Runnable.Instance.StartCoroutine(this);
Stop = false;
ID = Runnable.Instance._nextRoutineId++;
Runnable.Instance._routines[ID] = this;
#if ENABLE_RUNNABLE_DEBUGGING
Log.Debug("Runnable.Routine()", "Coroutine {0} started.", ID );
#endif
}
请参阅https://github.com/watson-developer-cloud/unity-sdk/blob/master/Scripts/Utilities/Runnable.cs
协程可以从任何游戏对象(如果处于活动状态)调用。
答案 1 :(得分:1)
您不需要从协同程序内部进行任何服务呼叫。仅应使用协程进行使用iamApikey
的身份验证
IEnumerator TokenExample()
{
// Create IAM token options and supply the apikey. IamUrl is the URL used to get the
// authorization token using the IamApiKey. It defaults to https://iam.bluemix.net/identity/token
TokenOptions iamTokenOptions = new TokenOptions()
{
IamApiKey = "<iam-api-key>",
IamUrl = "<iam-url>"
};
// Create credentials using the IAM token options
_credentials = new Credentials(iamTokenOptions, "<service-url>");
while (!_credentials.HasIamTokenData())
yield return null;
_assistant = new Assistant(_credentials);
_assistant.VersionDate = "2018-02-16";
_assistant.ListWorkspaces(OnListWorkspaces, OnFail);
}
这些示例仅用于说明如何调用服务调用。从协程调用代码的唯一原因是,我们可以在运行另一个服务调用之前等待一个服务调用的响应(即,这样我们就不会在创建工作空间之前尝试更新或删除工作空间)。>