wit-ai / wit-unity

Wit-Unity is a Unity C# wrapper around the the Wit.ai rest APIs and is a core component of Voice SDK.
Other
78 stars 20 forks source link

Introducing request-level entities #37

Closed kitchWWW closed 2 years ago

kitchWWW commented 2 years ago

Example usage:

      WitRequestOptions options = new WitRequestOptions();
      options.entityListProvider = new WitSimpleEntityList("colors", new List<string> {"red","aqua","forest"});
      wit.Activate("make the sphere aqua", options); 

Also works for speech activation.