Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Generated from 0fe50266ddf3f2e10f2e203fd4367222d4f79081 (#4695)
Browse files Browse the repository at this point in the history
[Cogsvcs] LUIS - add text to simple entity description
  • Loading branch information
AutorestCI authored Feb 19, 2019
1 parent ba13503 commit f3f431d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lib/services/luis/authoring/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2019 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions lib/services/luis/authoring/lib/operations/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -936,14 +936,14 @@ export interface Model {


/**
* Adds an entity extractor to the application.
* Adds a simple entity extractor to the application.
*
* @param {uuid} appId The application ID.
*
* @param {string} versionId The version ID.
*
* @param {object} modelCreateObject A model object containing the name for the
* new entity extractor.
* new simple entity extractor.
*
* @param {string} [modelCreateObject.name] Name of the new entity extractor.
*
Expand All @@ -961,14 +961,14 @@ export interface Model {
addEntityWithHttpOperationResponse(appId: string, versionId: string, modelCreateObject: models.ModelCreateObject, options?: { customHeaders? : { [headerName: string]: string; } }): Promise<HttpOperationResponse<string>>;

/**
* Adds an entity extractor to the application.
* Adds a simple entity extractor to the application.
*
* @param {uuid} appId The application ID.
*
* @param {string} versionId The version ID.
*
* @param {object} modelCreateObject A model object containing the name for the
* new entity extractor.
* new simple entity extractor.
*
* @param {string} [modelCreateObject.name] Name of the new entity extractor.
*
Expand Down
12 changes: 6 additions & 6 deletions lib/services/luis/authoring/lib/operations/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,14 +348,14 @@ function _listIntents(appId, versionId, options, callback) {
}

/**
* Adds an entity extractor to the application.
* Adds a simple entity extractor to the application.
*
* @param {uuid} appId The application ID.
*
* @param {string} versionId The version ID.
*
* @param {object} modelCreateObject A model object containing the name for the
* new entity extractor.
* new simple entity extractor.
*
* @param {string} [modelCreateObject.name] Name of the new entity extractor.
*
Expand Down Expand Up @@ -16579,14 +16579,14 @@ class Model {
}

/**
* Adds an entity extractor to the application.
* Adds a simple entity extractor to the application.
*
* @param {uuid} appId The application ID.
*
* @param {string} versionId The version ID.
*
* @param {object} modelCreateObject A model object containing the name for the
* new entity extractor.
* new simple entity extractor.
*
* @param {string} [modelCreateObject.name] Name of the new entity extractor.
*
Expand Down Expand Up @@ -16616,14 +16616,14 @@ class Model {
}

/**
* Adds an entity extractor to the application.
* Adds a simple entity extractor to the application.
*
* @param {uuid} appId The application ID.
*
* @param {string} versionId The version ID.
*
* @param {object} modelCreateObject A model object containing the name for the
* new entity extractor.
* new simple entity extractor.
*
* @param {string} [modelCreateObject.name] Name of the new entity extractor.
*
Expand Down

0 comments on commit f3f431d

Please sign in to comment.