Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Composer/packages/client/src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const Tips = {
(projectname-environment-LUfilename)`),
ENVIRONMENT: formatMessage(`When multiple people are working with models you want to be able to work with
models independently from each other tied to the source control.`),
AUTHORING_KEY: formatMessage('A primary key is created automatically when you create a LUIS account.'),
AUTHORING_KEY: formatMessage('An authoring key is created automatically when you create a LUIS account.'),
AUTHORING_REGION: formatMessage('Authoring region to use [westus,westeurope,australiaeast]'),
DEFAULT_LANGUAGE: formatMessage(
`Configures default language model to use if there is no culture code in the file name (Default:en-us)`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export const PublishLuis = (props) => {
data-testid="AuthoringKeyInput"
defaultValue={formData.authoringKey}
errorMessage={formData.errors.authoringKey || ''}
label={formatMessage('LUIS Primary key:')}
label={formatMessage('LUIS Authoring key:')}
onChange={updateForm('authoringKey')}
onRenderLabel={onRenderLabel(Tips.AUTHORING_KEY)}
/>
Expand Down
4 changes: 2 additions & 2 deletions docs/concept-language-understanding.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,10 @@ Now the last step is to publish your LU content to LUIS.

1. Select **Start Bot** on the upper right corner of the Composer.

2. Fill in your **LUIS Primary key** and select **OK**.
2. Fill in your **LUIS Authoring key** and select **OK**.

> [!Note]
> If you do not have a LUIS account, you can get one on the [LUIS](https://www.luis.ai/home). If you have a LUIS account but do not know how to find your LUIS primary key please see the [Azure resources for LUIS](https://aka.ms/LUIS-Authoring-Keys#programmatic-key) section of the _Authoring and runtime keys_ article.
> If you do not have a LUIS account, you can get one on the [LUIS](https://www.luis.ai/home). If you have a LUIS account but do not know how to find your LUIS Authoring key please see the [Azure resources for LUIS](https://aka.ms/LUIS-Authoring-Keys#programmatic-key) section of the _Authoring and runtime keys_ article.

3. Select **OK**.
![Publish LU](./media/language-understanding/publish-lu.png)
Expand Down