Skip to content

Commit 25d86e5

Browse files
1030280: Updated lint issues
1 parent 2a277a8 commit 25d86e5

13 files changed

Lines changed: 20 additions & 22 deletions

File tree

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/ai-assist/ai-service/using-node-js-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Node.js Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Node.js Server Setup
10+
# AI Assist Node.js Server Setup in ASP.NET Core Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create a **Node.js** server with **Azure OpenAI** credentials.
1313

@@ -171,7 +171,7 @@ http://localhost:3000/api/AIAssist/Chat
171171

172172
## Connect to the ASP.NET Core Spreadsheet
173173

174-
Once the server is listening, configure the `requestUrl` inside [`aiAssistSettings`](https://ej2.syncfusion.com/aspnetcore/documentation/api/spreadsheet/index-default#aiassistsettings) to point to the server endpoint:
174+
Once the server is listening, configure the `requestUrl` inside [`aiAssistSettings`](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AiAssistSettings) to point to the server endpoint:
175175

176176
{% tabs %}
177177
{% highlight cshtml tabtitle="CSHTML" %}

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/ai-assist/ai-service/using-web-api.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Web API Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Web API (.NET) Server Setup
10+
# AI Assist Web API Server Setup in ASP.NET Core Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create an **ASP.NET Core Web API** using **Azure OpenAI** credentials.
1313

@@ -201,7 +201,7 @@ https://localhost:{port}/api/AIAssist/Chat
201201

202202
## Connect to the ASP.NET Core Spreadsheet
203203

204-
Once the server is listening, configure the `requestUrl` inside [`aiAssistSettings`](https://ej2.syncfusion.com/aspnetcore/documentation/api/spreadsheet/index-default#aiassistsettings) to point to the server endpoint:
204+
Once the server is listening, configure the `requestUrl` inside [`aiAssistSettings`](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AiAssistSettings) to point to the server endpoint:
205205

206206
{% tabs %}
207207
{% highlight cshtml tabtitle="CSHTML" %}
@@ -259,7 +259,6 @@ dotnet run
259259
```
260260

261261
* [Web API Server](https://drive.google.com/file/d/13K7a89Vk4Xt7dgd4wt49q272bSVSVuz3/view?usp=drive_link)
262-
* [Live Demo](https://document.syncfusion.com/demos/spreadsheet-editor/aspnetcore/#/tailwind3/spreadsheet/ai-smart-spreadsheets)
263262

264263
## See also
265264

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/ai-assist/integration.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Inject the `AIAssist` module into the Spreadsheet using JavaScript. Add the foll
5858

5959
### Enable AI Assist
6060

61-
To enable `AIAssist` in the Spreadsheet tag helper, set the [`enableAIAssist`](https://ej2.syncfusion.com/aspnetcore/documentation/api/spreadsheet/index-default#enableaiassist) property to `true`.
61+
To enable `AIAssist` in the Spreadsheet tag helper, set the [`enableAIAssist`](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableAiAssist) property to `true`.
6262

6363
{% tabs %}
6464
{% highlight cshtml tabtitle="CSHTML" %}
@@ -77,7 +77,7 @@ This enables the AI Assist into the spreadsheet.
7777

7878
### Configure AI Assist Settings
7979

80-
Use the [`aiAssistSettings`](https://ej2.syncfusion.com/aspnetcore/documentation/api/spreadsheet/index-default#aiassistsettings) property to connect the spreadsheet to the backend server and customize the AI Assist.
80+
Use the [`aiAssistSettings`](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AiAssistSettings) property to connect the spreadsheet to the backend server and customize the AI Assist.
8181

8282
{% tabs %}
8383
{% highlight cshtml tabtitle="CSHTML" %}
@@ -114,7 +114,7 @@ All actions performed by AI Assist are recorded in the spreadsheet's undo/redo h
114114

115115
### How to Customize the Request Before Sending
116116

117-
Use the [`promptRequest`](https://ej2.syncfusion.com/aspnetcore/documentation/api/spreadsheet/index-default#promptrequest) event to add custom data — such as a user ID or session token — to the request before it reaches your server.
117+
Use the [`promptRequest`](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_PromptRequest) event to add custom data — such as a user ID or session token — to the request before it reaches your server.
118118

119119
{% tabs %}
120120
{% highlight cshtml tabtitle="CSHTML" %}
@@ -143,7 +143,7 @@ You can also prevent the request entirely by setting `args.cancel = true`.
143143

144144
### How to Handle AI Responses
145145

146-
Use the [`promptResponse`](https://ej2.syncfusion.com/aspnetcore/documentation/api/spreadsheet/index-default#promptresponse) event to run custom logic after the AI completes its task — for example, logging results or showing a notification.
146+
Use the [`promptResponse`](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_PromptResponse) event to run custom logic after the AI completes its task — for example, logging results or showing a notification.
147147

148148
{% tabs %}
149149
{% highlight cshtml tabtitle="CSHTML" %}
@@ -203,8 +203,8 @@ If the AI panel displays an error message:
203203

204204
| Event | When it fires | Common use |
205205
|---|---|---|
206-
| [`promptRequest`](https://ej2.syncfusion.com/aspnetcore/documentation/api/spreadsheet/index-default#promptrequest) | Before the prompt is sent to the server | Attach extra data or cancel the request |
207-
| [`promptResponse`](https://ej2.syncfusion.com/aspnetcore/documentation/api/spreadsheet/index-default#promptresponse) | After the AI completes and responds | Log results or trigger custom UI updates |
206+
| [`promptRequest`](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_PromptRequest) | Before the prompt is sent to the server | Attach extra data or cancel the request |
207+
| [`promptResponse`](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_PromptResponse) | After the AI completes and responds | Log results or trigger custom UI updates |
208208

209209
### What Can You Ask the AI?
210210

Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/ai-assist/ai-service/using-node-js-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Node.js Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Node.js Server Setup
10+
# AI Assist Node.js Server Setup in ASP.NET MVC Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create a **Node.js** server with **Azure OpenAI** credentials.
1313

Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/ai-assist/ai-service/using-web-api.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Web API Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Web API (.NET) Server Setup
10+
# AI Assist Web API Server Setup in ASP.NET MVC Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create an **ASP.NET Core Web API** using **Azure OpenAI** credentials.
1313

@@ -255,7 +255,6 @@ dotnet run
255255
```
256256

257257
* [Web API Server](https://drive.google.com/file/d/13K7a89Vk4Xt7dgd4wt49q272bSVSVuz3/view?usp=drive_link)
258-
* [Live Demo](https://document.syncfusion.com/demos/spreadsheet-editor/aspnetmvc/#/tailwind3/spreadsheet/ai-smart-spreadsheets)
259258

260259
## See also
261260

Document-Processing/Excel/Spreadsheet/Angular/ai-assist/ai-service/using-node-js-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Node.js Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Node.js Server Setup
10+
# AI Assist Node.js Server Setup in Angular Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create a **Node.js** server with **Azure OpenAI** credentials.
1313

Document-Processing/Excel/Spreadsheet/Angular/ai-assist/ai-service/using-web-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Web API Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Web API (.NET) Server Setup
10+
# AI Assist Web API Server Setup in Angular Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create an **ASP.NET Core Web API** using **Azure OpenAI** credentials.
1313

Document-Processing/Excel/Spreadsheet/Javascript-ES5/ai-assist/ai-service/using-node-js-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Node.js Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Node.js Server Setup
10+
# AI Assist Node.js Server Setup in JavaScript Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create a **Node.js** server with **Azure OpenAI** credentials.
1313

Document-Processing/Excel/Spreadsheet/Javascript-ES5/ai-assist/ai-service/using-web-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Web API Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Web API (.NET) Server Setup
10+
# AI Assist Web API Server Setup in JavaScript Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create an **ASP.NET Core Web API** using **Azure OpenAI** credentials.
1313

Document-Processing/Excel/Spreadsheet/Javascript-ES6/ai-assist/ai-service/using-node-js-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: AI Assist Node.js Server Setup
77
documentation: ug
88
---
99

10-
# AI Assist Node.js Server Setup
10+
# AI Assist Node.js Server Setup in TypeScript Spreadsheet
1111

1212
AI Assist requires a backend service to process prompts and return AI-generated responses. This topic explains how to create a **Node.js** server with **Azure OpenAI** credentials.
1313

0 commit comments

Comments
 (0)