Skip to content

Unity Watson SDK 0.11.0 #160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Oct 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6d99caf
Merge branch 'develop' into de-542-speechToTextCustomization
mediumTaj Sep 28, 2016
c1ac6a5
remove conversationID from ExampleConversation
mediumTaj Sep 29, 2016
7b56759
complete datamodels for Sessions
mediumTaj Sep 29, 2016
f7e7d8c
data models for asynchronous
mediumTaj Sep 29, 2016
903f555
custom language model data model
mediumTaj Sep 29, 2016
4e98900
custom words and custom corpora data models
mediumTaj Sep 29, 2016
e0ff6b8
refactor scripts based on new datamodel
mediumTaj Sep 29, 2016
9dd669d
* Added simple variable to define project name to test via inspector
ereneld Sep 29, 2016
6bed045
Merge pull request #156 from watson-developer-cloud/feature-155-UnitT…
ereneld Sep 30, 2016
0b7fca4
Get models and get model method and examples
mediumTaj Sep 30, 2016
c017d0b
create session.
mediumTaj Sep 30, 2016
cbc9f36
delete session - cookie error
mediumTaj Sep 30, 2016
05dbb18
Added cookie extraction methods to Utility
mediumTaj Oct 3, 2016
0a5962c
adding response headers to response object
mediumTaj Oct 3, 2016
064b6ef
attempting to send cookie with delete request - might not be possile …
mediumTaj Oct 4, 2016
d5aa495
get customizations, create customization, delete customization
mediumTaj Oct 4, 2016
0642308
GetCustomization
mediumTaj Oct 4, 2016
57c26ba
train, upgrade and reset customizations
mediumTaj Oct 4, 2016
e8410b1
removed methods dor sessions and cookie utility methods
mediumTaj Oct 4, 2016
9321bf0
GetCustomCorpora
mediumTaj Oct 4, 2016
2485f9e
delete custom corpora
mediumTaj Oct 6, 2016
7261137
add custom corpora
mediumTaj Oct 6, 2016
879e2f0
words methods
mediumTaj Oct 6, 2016
89c4c01
changed user-agent version
mediumTaj Oct 7, 2016
48a2ee0
examples for custom words
mediumTaj Oct 7, 2016
e446744
integration tests
mediumTaj Oct 7, 2016
0153cb7
changelog and documentation
mediumTaj Oct 7, 2016
075a519
Merge branch 'develop' into de-542-speechToTextCustomization
mediumTaj Oct 7, 2016
20c54de
Merge pull request #159 from watson-developer-cloud/de-542-speechToTe…
mediumTaj Oct 7, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
Change Log
==========
## Version 0.11.0
_2016_10_27_
* New: Abstracted `Speech to Text` customization methods.

## Version 0.10.0
_2016_09_23_

* New: Added `similarity search` to the `Visual Recognition` service.
* Fix: `Touch Widget` improvmements.
* Fix: Disabled 3rd Party plugin warnings.
* Fix: Removed `Conversation` Message overload method that takes only input and conversationID.
* Fix: Rewrote `Conversation` example script to show how to create MessageRequest object.
* Fix: Rewrote `Conversation` example script to show how to create MessageRequest object.

## Version 0.9.0
_2016-08-26_
Expand Down
3 changes: 0 additions & 3 deletions Examples/ServiceExamples/Scripts/ExampleConversation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class ExampleConversation : MonoBehaviour
{
private Conversation m_Conversation = new Conversation();
private string m_WorkspaceID;
private string m_ConversationID;
private bool m_UseAlternateIntents = true;
private string[] questionArray = { "can you turn up the AC", "can you turn on the wipers", "can you turn off the wipers", "can you turn down the ac", "can you unlock the door"};

Expand Down Expand Up @@ -57,8 +56,6 @@ private void OnMessageWithOnlyInput(MessageResponse resp, string customData)
foreach (string txt in resp.output.text)
Debug.Log("output: " + txt);

m_ConversationID = resp.context.conversation_id;

string questionStr = questionArray[UnityEngine.Random.Range(0, questionArray.Length - 1)];
Debug.Log(string.Format("**********User: {0}", questionStr));

Expand Down
Loading