Skip to content

Commit

Permalink
[AutoPR] cognitiveservices/data-plane/LUIS/Runtime (Azure#7900)
Browse files Browse the repository at this point in the history
* Generated from 01b671c8c6e5e4ee7e6ada9b21490fa6845fa0d9 (Azure#6348)

chore: jsonfmt cognitiveservices

* Packaging update of azure-cognitiveservices-language-luis

* Generated from d3620f1cf3fda9d30555c4b0e47a1ea521ca5404 (Azure#7324)

Review 1 + remove v3.0 preview

* Generated from eaa6ad73767712e1f506890776a2eb586b1c2fb5 (Azure#7899)

change api path

* changelog
  • Loading branch information
AutorestCI authored and fengzhou-msft committed Oct 28, 2019
1 parent 0e33d79 commit 324d168
Show file tree
Hide file tree
Showing 29 changed files with 1,013 additions and 1,055 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
Release History
===============

0.4.0 (2019-10-25)
++++++++++++++++++

**Features**

- Added operation PredictionOperations.get_slot_prediction
- Added operation PredictionOperations.get_version_prediction

**Breaking changes**
- Parameter score of model Sentiment is now required
- Model EntityLabel no longer has parameter role
- Model EntityLabel no longer has parameter role_id
- Model JSONEntity no longer has parameter role
- Model EntityLabelObject no longer has parameter role
- Model CompositeEntityModel has a new signature
- Removed operation PredictionOperations.resolve

0.3.1 (2019-09-11)
++++++++++++++++++

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
# regenerated.
# --------------------------------------------------------------------------

from .luis_runtime_client import LUISRuntimeClient
from .version import VERSION
from ._configuration import LUISRuntimeClientConfiguration
from ._luis_runtime_client import LUISRuntimeClient
__all__ = ['LUISRuntimeClient', 'LUISRuntimeClientConfiguration']

__all__ = ['LUISRuntimeClient']
from .version import VERSION

__version__ = VERSION

Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest import Configuration

from .version import VERSION


class LUISRuntimeClientConfiguration(Configuration):
"""Configuration for LUISRuntimeClient
Note that all parameters used to create this instance are saved as instance
attributes.
:param endpoint: Supported Cognitive Services endpoints (protocol and
hostname, for example: https://westus.api.cognitive.microsoft.com).
:type endpoint: str
:param credentials: Subscription credentials which uniquely identify
client subscription.
:type credentials: None
"""

def __init__(
self, endpoint, credentials):

if endpoint is None:
raise ValueError("Parameter 'endpoint' must not be None.")
if credentials is None:
raise ValueError("Parameter 'credentials' must not be None.")
base_url = '{Endpoint}/luis/prediction/v3.0'

super(LUISRuntimeClientConfiguration, self).__init__(base_url)

# Starting Autorest.Python 4.0.64, make connection pool activated by default
self.keep_alive = True

self.add_user_agent('azure-cognitiveservices-language-luis/{}'.format(VERSION))

self.endpoint = endpoint
self.credentials = credentials
Original file line number Diff line number Diff line change
Expand Up @@ -10,40 +10,11 @@
# --------------------------------------------------------------------------

from msrest.service_client import SDKClient
from msrest import Configuration, Serializer, Deserializer
from .version import VERSION
from .operations.prediction_operations import PredictionOperations
from . import models


class LUISRuntimeClientConfiguration(Configuration):
"""Configuration for LUISRuntimeClient
Note that all parameters used to create this instance are saved as instance
attributes.
:param endpoint: Supported Cognitive Services endpoints (protocol and
hostname, for example: https://westus.api.cognitive.microsoft.com).
:type endpoint: str
:param credentials: Subscription credentials which uniquely identify
client subscription.
:type credentials: None
"""

def __init__(
self, endpoint, credentials):
from msrest import Serializer, Deserializer

if endpoint is None:
raise ValueError("Parameter 'endpoint' must not be None.")
if credentials is None:
raise ValueError("Parameter 'credentials' must not be None.")
base_url = '{Endpoint}/luis/v2.0'

super(LUISRuntimeClientConfiguration, self).__init__(base_url)

self.add_user_agent('azure-cognitiveservices-language-luis/{}'.format(VERSION))

self.endpoint = endpoint
self.credentials = credentials
from ._configuration import LUISRuntimeClientConfiguration
from .operations import PredictionOperations
from . import models


class LUISRuntimeClient(SDKClient):
Expand All @@ -70,7 +41,7 @@ def __init__(
super(LUISRuntimeClient, self).__init__(self.config.credentials, self.config)

client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
self.api_version = '2.0'
self.api_version = '3.0'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,40 @@
# --------------------------------------------------------------------------

try:
from .intent_model_py3 import IntentModel
from .entity_model_py3 import EntityModel
from .composite_child_model_py3 import CompositeChildModel
from .composite_entity_model_py3 import CompositeEntityModel
from .sentiment_py3 import Sentiment
from .luis_result_py3 import LuisResult
from .entity_with_score_py3 import EntityWithScore
from .entity_with_resolution_py3 import EntityWithResolution
from .api_error_py3 import APIError, APIErrorException
from ._models_py3 import DynamicList
from ._models_py3 import Error, ErrorException
from ._models_py3 import ErrorBody
from ._models_py3 import ExternalEntity
from ._models_py3 import Intent
from ._models_py3 import Prediction
from ._models_py3 import PredictionRequest
from ._models_py3 import PredictionRequestOptions
from ._models_py3 import PredictionResponse
from ._models_py3 import RequestList
from ._models_py3 import Sentiment
except (SyntaxError, ImportError):
from .intent_model import IntentModel
from .entity_model import EntityModel
from .composite_child_model import CompositeChildModel
from .composite_entity_model import CompositeEntityModel
from .sentiment import Sentiment
from .luis_result import LuisResult
from .entity_with_score import EntityWithScore
from .entity_with_resolution import EntityWithResolution
from .api_error import APIError, APIErrorException
from ._models import DynamicList
from ._models import Error, ErrorException
from ._models import ErrorBody
from ._models import ExternalEntity
from ._models import Intent
from ._models import Prediction
from ._models import PredictionRequest
from ._models import PredictionRequestOptions
from ._models import PredictionResponse
from ._models import RequestList
from ._models import Sentiment

__all__ = [
'IntentModel',
'EntityModel',
'CompositeChildModel',
'CompositeEntityModel',
'DynamicList',
'Error', 'ErrorException',
'ErrorBody',
'ExternalEntity',
'Intent',
'Prediction',
'PredictionRequest',
'PredictionRequestOptions',
'PredictionResponse',
'RequestList',
'Sentiment',
'LuisResult',
'EntityWithScore',
'EntityWithResolution',
'APIError', 'APIErrorException',
]
Loading

0 comments on commit 324d168

Please sign in to comment.