Open dmccrevan opened 6 years ago
I added a function changeConfig so that users could easily change the luis's configuration if the application is using multiple luis's workspaces.
changeConfig
Sample usage:
var LUISclient = LUISClient({ appId: APPID, appKey: APPKEY, verbose: true }); var newConfig = { appId: newAPPID, appKey: newAPPKEY, verbose: false }; LUISclient.changeConfig(newConfig);
Update: In my second commit, I changed my code to more fit the way previously used to initialize the LUISClient
All CLA requirements met.
@Ahmkel Could this be merged in?
I added a function
changeConfig
so that users could easily change the luis's configuration if the application is using multiple luis's workspaces.Sample usage:
Update: In my second commit, I changed my code to more fit the way previously used to initialize the LUISClient