You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ej2-vue/ai-assistview/assist-view.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
12
12
13
13
## Setting prompt text
14
14
15
-
You can use the [prompt](../api/ai-assist-view#prompt) property to define the prompt text for the AI AssistView component.
15
+
You can use the [prompt](../api/ai-assistview#prompt) property to define the prompt text for the AI AssistView component.
16
16
17
17
{% tabs %}
18
18
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -27,7 +27,7 @@ You can use the [prompt](../api/ai-assist-view#prompt) property to define the pr
27
27
28
28
## Setting prompt placeholder
29
29
30
-
You can use the [promptPlaceholder](../api/ai-assist-view#promptplaceholder) property to set the placeholder text for the prompt textarea. The default value is `Type prompt for assistance...`.
30
+
You can use the [promptPlaceholder](../api/ai-assistview#promptplaceholder) property to set the placeholder text for the prompt textarea. The default value is `Type prompt for assistance...`.
31
31
32
32
{% tabs %}
33
33
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -42,9 +42,9 @@ You can use the [promptPlaceholder](../api/ai-assist-view#promptplaceholder) pro
42
42
43
43
## Prompt-response collection
44
44
45
-
You can use the [prompts](../api/ai-assist-view#prompts) property to initialize the component with the configured data as a collection of prompts and responses or individual entries.
45
+
You can use the [prompts](../api/ai-assistview#prompts) property to initialize the component with the configured data as a collection of prompts and responses or individual entries.
46
46
47
-
> The [prompts](../api/ai-assist-view#prompts) collection stores all the prompts and responses generated.
47
+
> The [prompts](../api/ai-assistview#prompts) collection stores all the prompts and responses generated.
48
48
49
49
{% tabs %}
50
50
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -59,7 +59,7 @@ You can use the [prompts](../api/ai-assist-view#prompts) property to initialize
59
59
60
60
## Adding prompt suggestions
61
61
62
-
You can use the [promptSuggestions](../api/ai-assist-view#promptsuggestions) property, to add the suggestions in both initial and on-demand which help users to refine their prompts. Additionally, custom header can be set for suggestions further enhancing the user experience.
62
+
You can use the [promptSuggestions](../api/ai-assistview#promptsuggestions) property, to add the suggestions in both initial and on-demand which help users to refine their prompts. Additionally, custom header can be set for suggestions further enhancing the user experience.
63
63
64
64
{% tabs %}
65
65
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -74,7 +74,7 @@ You can use the [promptSuggestions](../api/ai-assist-view#promptsuggestions) pro
74
74
75
75
### Adding suggestions header
76
76
77
-
You can use the [promptSuggestionsHeader](../api/ai-assist-view#promptsuggestionsheader) property to set the header text for the prompt suggestions in the AI AssistView.
77
+
You can use the [promptSuggestionsHeader](../api/ai-assistview#promptsuggestionsheader) property to set the header text for the prompt suggestions in the AI AssistView.
78
78
79
79
{% tabs %}
80
80
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -89,7 +89,7 @@ You can use the [promptSuggestionsHeader](../api/ai-assist-view#promptsuggestion
89
89
90
90
## Adding prompt iconCss
91
91
92
-
You can customize the appearance of the prompter avatar by using the [promptIconCss](../api/ai-assist-view#prompticoncss) property.
92
+
You can customize the appearance of the prompter avatar by using the [promptIconCss](../api/ai-assistview#prompticoncss) property.
93
93
94
94
{% tabs %}
95
95
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -104,7 +104,7 @@ You can customize the appearance of the prompter avatar by using the [promptIcon
104
104
105
105
## Adding response iconCss
106
106
107
-
You can use the [responseIconCss](../api/ai-assist-view#responseiconcss) property to customize the appearance of the responder avatar. By default, the `e-assistview-icon` class is added as the built-in AI AssistView response icon.
107
+
You can use the [responseIconCss](../api/ai-assistview#responseiconcss) property to customize the appearance of the responder avatar. By default, the `e-assistview-icon` class is added as the built-in AI AssistView response icon.
108
108
109
109
{% tabs %}
110
110
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -119,7 +119,7 @@ You can use the [responseIconCss](../api/ai-assist-view#responseiconcss) propert
119
119
120
120
## Show or hide clear button
121
121
122
-
You can use the [showClearButton](../api/ai-assist-view#showclearbutton) property to show or hide the clear button. By default, its value is `false`, when the clear button is clicked, the prompt text entered will be cleared.
122
+
You can use the [showClearButton](../api/ai-assistview#showclearbutton) property to show or hide the clear button. By default, its value is `false`, when the clear button is clicked, the prompt text entered will be cleared.
123
123
124
124
{% tabs %}
125
125
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
Copy file name to clipboardExpand all lines: ej2-vue/ai-assistview/custom-view.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ By using the `e-views` tag directive you can define the collection of different
16
16
17
17
### Setting view type
18
18
19
-
You can set the type of view by using the [type](../api/ai-assist-view/assistViewType) property within the `e-view` tag directive. It accepts two values such as `Assist`, and `Custom`.
19
+
You can set the type of view by using the [type](../api/ai-assistview/assistViewType) property within the `e-view` tag directive. It accepts two values such as `Assist`, and `Custom`.
20
20
21
21
```html
22
22
@@ -67,7 +67,7 @@ export default {
67
67
68
68
### Setting name
69
69
70
-
You can use the [name](../api/ai-assist-view/assistViewModel/#name) property to specifies the header name of the `Assist` or `Custom` views in the AI AssistView.
70
+
You can use the [name](../api/ai-assistview/assistViewModel/#name) property to specifies the header name of the `Assist` or `Custom` views in the AI AssistView.
71
71
72
72
```html
73
73
@@ -118,7 +118,7 @@ export default {
118
118
119
119
### Setting iconCss
120
120
121
-
You can customize the view icons by using the [iconCss](../api/ai-assist-view/assistViewModel/#iconcss) property. By default the `e-assistview-icon` class is added as built-in header icon for the AI AssistView.
121
+
You can customize the view icons by using the [iconCss](../api/ai-assistview/assistViewModel/#iconcss) property. By default the `e-assistview-icon` class is added as built-in header icon for the AI AssistView.
122
122
123
123
```html
124
124
@@ -182,7 +182,7 @@ The following example illustrates how types, name, and iconCss are used in a AI
182
182
183
183
### Setting view template
184
184
185
-
You can use the [viewTemplate](../api/ai-assist-view/assistViewModel/#viewtemplate) property to add the view content of the multiple views added in the AI AssistView.
185
+
You can use the [viewTemplate](../api/ai-assistview/assistViewModel/#viewtemplate) property to add the view content of the multiple views added in the AI AssistView.
186
186
187
187
{% tabs %}
188
188
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -197,7 +197,7 @@ You can use the [viewTemplate](../api/ai-assist-view/assistViewModel/#viewtempla
197
197
198
198
## Setting active view
199
199
200
-
You can use the [activeView](../api/ai-assist-view#activeview) property to set the active view in the AI AssistView. By default, the value is `0`.
200
+
You can use the [activeView](../api/ai-assistview#activeview) property to set the active view in the AI AssistView. By default, the value is `0`.
201
201
202
202
{% tabs %}
203
203
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
Copy file name to clipboardExpand all lines: ej2-vue/ai-assistview/getting-started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,7 @@ yarn run serve
145
145
146
146
## Configure suggestions and responses
147
147
148
-
You can use the [promptSuggestions](../api/ai-assist-view#promptsuggestions) property to add prompt suggestions and the [promptRequest](../api/ai-assist-view#promptrequest) event to add responses when the prompt matches the specified prompts data otherwise, the default response will be displayed.
148
+
You can use the [promptSuggestions](../api/ai-assistview#promptsuggestions) property to add prompt suggestions and the [promptRequest](../api/ai-assistview#promptrequest) event to add responses when the prompt matches the specified prompts data otherwise, the default response will be displayed.
149
149
150
150
{% tabs %}
151
151
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
Copy file name to clipboardExpand all lines: ej2-vue/ai-assistview/methods.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
12
12
13
13
## Adding prompt response
14
14
15
-
You can use the [addPromptResponse](../api/ai-assist-view#addpromptresponse) public method to add the prompts and responses to the AI AssistView. You can add the it either as a `string` or `object` collection.
15
+
You can use the [addPromptResponse](../api/ai-assistview#addpromptresponse) public method to add the prompts and responses to the AI AssistView. You can add the it either as a `string` or `object` collection.
16
16
17
17
### Adding responses as string.
18
18
@@ -46,7 +46,7 @@ You can add object response, by passing the prompt and response as a collection
46
46
47
47
## Executing prompt
48
48
49
-
You can use the [executePrompt](../api/ai-assist-view#executeprompt) method to execute the prompts dynamically in the AI AssistView. It accepts prompts as string values, which triggers the [promptRequest](../api/ai-assist-view#promptrequest) event and performs the callback actions.
49
+
You can use the [executePrompt](../api/ai-assistview#executeprompt) method to execute the prompts dynamically in the AI AssistView. It accepts prompts as string values, which triggers the [promptRequest](../api/ai-assistview#promptrequest) event and performs the callback actions.
50
50
51
51
{% tabs %}
52
52
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
Copy file name to clipboardExpand all lines: ej2-vue/ai-assistview/templates.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The AI AssistView provides several template options to customize the banner, pro
14
14
15
15
## Banner template
16
16
17
-
You can use the [bannerTemplate](../api/ai-assist-view#bannertemplate) property to display additional information, such as a welcome note, and more in the AI AssistView. This banner is positioned at the top of the prompt and response conversation area within the AI AssistView.
17
+
You can use the [bannerTemplate](../api/ai-assistview#bannertemplate) property to display additional information, such as a welcome note, and more in the AI AssistView. This banner is positioned at the top of the prompt and response conversation area within the AI AssistView.
18
18
19
19
{% tabs %}
20
20
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -29,7 +29,7 @@ You can use the [bannerTemplate](../api/ai-assist-view#bannertemplate) property
29
29
30
30
## Prompt item template
31
31
32
-
You can use the [promptItemTemplate](../api/ai-assist-view#promptitemtemplate) property to customize the prompt items in the AI AssistView. The template context includes `prompt`, `toolbarItems` and `index` items.
32
+
You can use the [promptItemTemplate](../api/ai-assistview#promptitemtemplate) property to customize the prompt items in the AI AssistView. The template context includes `prompt`, `toolbarItems` and `index` items.
33
33
34
34
{% tabs %}
35
35
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -44,7 +44,7 @@ You can use the [promptItemTemplate](../api/ai-assist-view#promptitemtemplate) p
44
44
45
45
## Response item template
46
46
47
-
You can use the [responseItemTemplate](../api/ai-assist-view#responseitemtemplate) property to customize response items within the AI AssistView. The template context includes the `prompt`, `response`, `index`, `toolbarItems` and `output` items.
47
+
You can use the [responseItemTemplate](../api/ai-assistview#responseitemtemplate) property to customize response items within the AI AssistView. The template context includes the `prompt`, `response`, `index`, `toolbarItems` and `output` items.
48
48
49
49
{% tabs %}
50
50
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -59,7 +59,7 @@ You can use the [responseItemTemplate](../api/ai-assist-view#responseitemtemplat
59
59
60
60
## Prompt suggestion item template
61
61
62
-
You can use the [promptSuggestionItemTemplate](../api/ai-assist-view#promptsuggestionitemtemplate) property to customize the prompt suggestion items in the AI AssistView. The template context includes the `index` and `promptSuggestion`.
62
+
You can use the [promptSuggestionItemTemplate](../api/ai-assistview#promptsuggestionitemtemplate) property to customize the prompt suggestion items in the AI AssistView. The template context includes the `index` and `promptSuggestion`.
63
63
64
64
{% tabs %}
65
65
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
@@ -74,7 +74,7 @@ You can use the [promptSuggestionItemTemplate](../api/ai-assist-view#promptsugge
74
74
75
75
## Footer template
76
76
77
-
You can use the [footerTemplate](../api/ai-assist-view#footertemplate) property to customize the default footer area and manage prompt request actions in the AI AssistView. This allows users to create unique footers that meet their specific needs.
77
+
You can use the [footerTemplate](../api/ai-assistview#footertemplate) property to customize the default footer area and manage prompt request actions in the AI AssistView. This allows users to create unique footers that meet their specific needs.
78
78
79
79
{% tabs %}
80
80
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
0 commit comments