Skip to content

Commit ba86816

Browse files
Merge pull request #7020 from syncfusion-content/988619-UG-Concerns
988619: updated changes for latest concerns
2 parents e7e6d06 + 89bc0ef commit ba86816

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

blazor/ai-assistview/ai-integrations/gemini-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Before starting, ensure you have the following:
2323

2424
## Set Up the AI AssistView Component
2525

26-
Follow the Syncfusion AI AssistView [Getting Started](../getting-started) guide to configure and render the AI AssistView component in the application and that prerequisites are met.
26+
Follow the [Getting Started](../getting-started) guide to configure and render the AI AssistView component in the application and that prerequisites are met.
2727

2828
## Install Dependencies
2929

blazor/ai-assistview/ai-integrations/ollama-llm-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Before starting, ensure you have the following:
2323

2424
## Set Up the AI AssistView Component
2525

26-
Follow the Syncfusion AI AssistView [Getting Started](../getting-started) guide to configure and render the AI AssistView component in the application and that prerequisites are met.
26+
Follow the [Getting Started](../getting-started) guide to configure and render the AI AssistView component in the application and that prerequisites are met.
2727

2828
## Install Dependency
2929

blazor/ai-assistview/ai-integrations/openai-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Before starting, ensure you have the following:
2323

2424
## Set Up the AI AssistView Component
2525

26-
Follow the Syncfusion AI AssistView [Getting Started](../getting-started) guide to configure and render the AI AssistView component in the application and that prerequisites are met.
26+
Follow the [Getting Started](../getting-started) guide to configure and render the AI AssistView component in the application and that prerequisites are met.
2727

2828
## Install Dependencies
2929

@@ -65,7 +65,7 @@ Note: The sample below uses HttpClient directly and does not require the Azure/O
6565

6666
> `Security Note`: expose your API key in client-side code for production applications. Use a server-side proxy or environment variables to manage sensitive information securely.
6767
68-
## Azure OpenAI with AI AssistView
68+
## Configure AI AssistView with Azure OpenAI
6969

7070
- Configure your Azure OpenAI endpoint, API key, and deployment name in your **Program.cs** (or using your preferred configuration mechanism).
7171

blazor/chat-ui/bot-integrations/integration-with-bot-dialogflow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Before starting, ensure you have the following:
2323

2424
## Set Up the Chat UI component
2525

26-
Follow the Syncfusion Chat UI Getting Started guide to configure and render the Chat UI component in the application and that prerequisites are met.
26+
Follow the [Getting Started](../getting-started) guide to configure and render the Chat UI component in the application and that prerequisites are met.
2727

2828
## Install Dependencies
2929

@@ -125,17 +125,17 @@ Add the project ID to `appsettings.json` (extract from the JSON key file if need
125125
126126
## Configure Message Send
127127

128-
Use the `MessageSend` event of the `SfChatUI` component to handle message exchanges. Each time a user sends a message, this event will be invoked with details of the sent message.
128+
Use the [MessageSend](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfChatUI.html#Syncfusion_Blazor_InteractiveChat_SfChatUI_MessageSend) event of the `SfChatUI` component to handle message exchanges. Each time a user sends a message, this event will be invoked with details of the sent message.
129129

130130
### Forward Message to Backend
131131

132-
In the `MessageSend` event handler, send a POST request to your backend API endpoint (`/api/chat/message`). The backend forwards the message to Dialogflow and returns the response.
132+
In the [MessageSend](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfChatUI.html#Syncfusion_Blazor_InteractiveChat_SfChatUI_MessageSend) event handler, send a POST request to your backend API endpoint (`/api/chat/message`). The backend forwards the message to Dialogflow and returns the response.
133133

134134
### Displaying Bot Response
135135

136136
* Use the `AddMessageAsync` method (via a reference to the component) to programmatically add the bot's reply to the Chat UI.
137137

138-
* Create or modify a Razor component (`e.g., Pages/Chat.razor`) to integrate the Syncfusion Chat UI with the Dialogflow backend:
138+
* Create or modify a Razor component (`e.g., Pages/Chat.razor`) to integrate the Chat UI with the Dialogflow backend:
139139

140140
{% tabs %}
141141
{% highlight razor %}

blazor/chat-ui/bot-integrations/integration-with-bot-framework.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Before starting, ensure you have the following:
2323

2424
## Set Up the Chat UI component
2525

26-
Follow the Syncfusion Chat UI [Getting Started](../getting-started) guide to configure and render the Chat UI component in the application and that prerequisites are met.
26+
Follow the [Getting Started](../getting-started) guide to configure and render the Chat UI component in the application and that prerequisites are met.
2727

2828
## Install Dependencies
2929

@@ -120,9 +120,9 @@ Add the Direct Line secret to `Web.config`:
120120
121121
## Configure Chat UI
122122

123-
Use the `MessageSend`event of the `SfChatUI` component to handle message exchanges. This event is triggered before a message is sent, allowing you to forward it to the bot via the Direct Line API. Use the `AddMessageAsync` method (via a reference to the component) to programmatically add the bot's reply to the Chat UI.
123+
Use the [MessageSend](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfChatUI.html#Syncfusion_Blazor_InteractiveChat_SfChatUI_MessageSend) event to handle message exchanges. This event is triggered before a message is sent, allowing you to forward it to the bot via the Direct Line API. Use the `AddMessageAsync` method (via a reference to the component) to programmatically add the bot's reply to the Chat UI.
124124

125-
Create or modify a Razor component (e.g., `Pages/Chat.razor`) to integrate the Syncfusion Chat UI with the Direct Line API:
125+
Create or modify a Razor component (e.g., `Pages/Chat.razor`) to integrate the Chat UI with the Direct Line API:
126126

127127
{% tabs %}
128128
{% highlight cshtml %}

0 commit comments

Comments
 (0)