diff --git a/controls/aiprompt/accessibility-and-internationalization/internationalization.md b/controls/aiprompt/accessibility-and-internationalization/internationalization.md index 0fc6e340c4..b12822ba9b 100644 --- a/controls/aiprompt/accessibility-and-internationalization/internationalization.md +++ b/controls/aiprompt/accessibility-and-internationalization/internationalization.md @@ -2,7 +2,7 @@ title: Internationalization page_title: AIPrompt Internationalization description: "Internationalization of the Telerik WebForms AIPrompt component." -slug: aiprompt/server-side-programming/internationalization +slug: aiprompt/accessibility/internationalization tags: internationalization published: True position: 2 diff --git a/controls/aiprompt/accessibility-and-internationalization/keyboard-navigation.md b/controls/aiprompt/accessibility-and-internationalization/keyboard-navigation.md index ed560f694b..9fbc371edd 100644 --- a/controls/aiprompt/accessibility-and-internationalization/keyboard-navigation.md +++ b/controls/aiprompt/accessibility-and-internationalization/keyboard-navigation.md @@ -2,7 +2,7 @@ title: Keyboard Navigation page_title: AIPrompt Keyboard Navigation description: "Learn about the Keyboard Navigation of the WebForms AIPrompt" -slug: templates/keyobard-navigation +slug: aiprompt/accessibility/keyobard-navigation position: 3 --- diff --git a/getting-started/activating-your-license/license-key-errors.md b/getting-started/activating-your-license/license-key-errors.md index f621df7f37..6c018e7b7c 100644 --- a/getting-started/activating-your-license/license-key-errors.md +++ b/getting-started/activating-your-license/license-key-errors.md @@ -65,4 +65,3 @@ You are using a product version released outside the validity period of your per * [Download and Install License Key]({%slug getting-started/activating-your-license/setting-up-your-license%}) * [Licensing FAQ]({%slug getting-started/activating-your-license/licensing-faq%}) -* [Use License Keys in CI/CD]({%slug deployment_license_key_aspnetcore%}) diff --git a/knowledge-base/aiprompt-integration-with-openai.md b/knowledge-base/aiprompt-integration-with-openai.md index cbcccea6f9..58b8783032 100644 --- a/knowledge-base/aiprompt-integration-with-openai.md +++ b/knowledge-base/aiprompt-integration-with-openai.md @@ -8,23 +8,19 @@ published: True res_type: kb --- -# OpenAI Integration +## Description The WebForms AIPrompt allows you to easily integrate it with a Chat API service such as ChatGPT. This is thanks to the [OnPromptRequest]({%slug aiprompt/client-side-programming/events#prompt-request%}) event that returns the input text (prompt), and sets the output. -### Using with an OpenAI key - If you have an OpenAI subscription, you can directly use it with the AIPrompt component. >note IMPORTANT: Never share your API key with anyone or push it to GitHub/GitLab! The key will automatically be disabled by OpenAI and you will need to create a new one. -### Installing Required Dependencies - Since we got the API key, now we need to install the **OpenAI** Nuget package, in order to use their services. Go to the Nuget Package Manager, search for OpenAI and install the package. For more information on the library itself, you can check [The official .NET library for the OpenAI API](https://github.com/openai/openai-dotnet). ![Installing OpenAI](images/aiprompt-openai-integration/nuget.png "Installing OpenAI") -### Integration +### Solution Now let's start the actual integration. For it, we will use the [Dependency injection](https://en.wikipedia.org/wiki/Dependency_injection) tehnique, to make code scalable for the future.