Skip to content
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

[CLU] support for AAD + docs #24960

Merged
merged 9 commits into from
Jun 27, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Client now uses python dictionaries for method parameters and results instead of classes.
* Many input and result parameter name changes in `analyze_conversation()` method

## 1.0.0 (Unreleased)
## 1.0.0 (2022-06-27)

### Features Added
* Added Azure Active Directory (AAD) authentication support
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Conversational Language Understanding - aka **CLU** for short - is a cloud-based
- Workflow app: Acts like an orchestrator to select the best candidate to analyze conversations to get best response from apps like Qna, Luis, and Conversation App


[Source code][conversationallanguage_client_src] | [Package (PyPI)][conversationallanguage_pypi_package] | [API reference documentation][api_reference_documentation] | [Product documentation][conversationallanguage_docs] | [Samples][conversationallanguage_samples]
[Source code][conversationallanguage_client_src] | [Package (PyPI)][conversationallanguage_pypi_package] | [API reference documentation][api_reference_documentation] | [Samples][conversationallanguage_samples] | [Product documentation][conversationallanguage_docs] | [Analysis REST API documentation][conversationanalysis_restdocs] | [Authoring REST API documentation][conversationanalysis_restdocs_authoring]
kristapratico marked this conversation as resolved.
Show resolved Hide resolved

## _Disclaimer_

Expand Down Expand Up @@ -370,7 +370,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
[azure_cli]: https://docs.microsoft.com/cli/azure/
[azure_portal]: https://portal.azure.com/
[azure_subscription]: https://azure.microsoft.com/free/

[conversationanalysis_restdocs]: https://docs.microsoft.com/rest/api/language/conversation-analysis-runtime/
kristapratico marked this conversation as resolved.
Show resolved Hide resolved
[conversationanalysis_restdocs_authoring]: https://docs.microsoft.com/rest/api/language/conversational-analysis-authoring
[cla]: https://cla.microsoft.com
[coc_contact]: mailto:[email protected]
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@

ConversationAnalysisClientOperationsMixinGenerated.analyze_conversation.__doc__ = \
"""Analyzes the input conversation utterance.


See https://docs.microsoft.com/rest/api/language/conversation-analysis-runtime/analyze-conversation
for more information.

:param task: A single conversational task to execute. Is either a model type or a IO type.
Required.
:type task: JSON or IO
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ class ConversationAnalysisClient(GeneratedConversationAnalysisClient): # pylint:
the best candidate service to handle the request. At last, it returns a response with the
candidate service's response as a payload.

See https://docs.microsoft.com/rest/api/language/conversation-analysis-runtime/ for more information about
requests and responses you can pass to this client.

:param endpoint: Supported Cognitive Services endpoint (e.g.,
https://:code:`<resource-name>`.cognitiveservices.azure.com). Required.
:type endpoint: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
ConversationAnalysisClientOperationsMixinGenerated.analyze_conversation.__doc__ = \
"""Analyzes the input conversation utterance.

See https://docs.microsoft.com/rest/api/language/conversation-analysis-runtime/analyze-conversation
for more information.

:param task: A single conversational task to execute. Is either a model type or a IO type.
Required.
:type task: JSON or IO
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ class ConversationAnalysisClient(GeneratedConversationAnalysisClient): # pylint:
the best candidate service to handle the request. At last, it returns a response with the
candidate service's response as a payload.

See https://docs.microsoft.com/rest/api/language/conversation-analysis-runtime/ for more information about
requests and responses you can pass to this client.

:param endpoint: Supported Cognitive Services endpoint (e.g.,
https://:code:`<resource-name>`.cognitiveservices.azure.com). Required.
:type endpoint: str
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ class ConversationAuthoringClient(GeneratedConversationAuthoringClient): # pylin
detection and question answering. Further documentation can be found in
https://docs.microsoft.com/en-us/azure/cognitive-services/language-service/overview.

See https://docs.microsoft.com/rest/api/language/conversational-analysis-authoring for more information about
requests and responses you can pass to this client.

:param endpoint: Supported Cognitive Services endpoint (e.g.,
https://:code:`<resource-name>`.cognitiveservices.azure.com). Required.
:type endpoint: str
Expand Down
Loading