Assist view in Vue AI AssistView component
30 Nov 202424 minutes to read
Setting prompt text
You can use the prompt property to define the prompt text for the AI AssistView component.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' prompt="What tools or apps can help me prioritize tasks?" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(defaultResponse);
}, 1000);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' prompt="What tools or apps can help me prioritize tasks?" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 2000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Setting prompt placeholder
You can use the promptPlaceholder property to set the placeholder text for the prompt textarea. The default value is Type prompt for assistance...
.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' promptPlaceholder="Type a message..." :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(defaultResponse);
}, 1000);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' promptPlaceholder="Type a message..." :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 2000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Prompt-response collection
You can use the prompts property to initialize the component with the configured data as a collection of prompts and responses or individual entries.
The prompts collection stores all the prompts and responses generated.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' :prompts="promptsData" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let foundPrompt = promptsData.find((promptObj) => promptObj.prompt === args.prompt);
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(foundPrompt ? foundPrompt.response : defaultResponse);
}, 1000);
};
const promptsData = [
{
prompt: "What is AI?",
response: `<div>AI stands for Artificial Intelligence, enabling machines to mimic human intelligence for tasks such as learning, problem-solving, and decision-making.</div>`
}
];
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' :prompts="promptsData" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
promptsData: [
{
prompt: "What is AI?",
response: `<div>AI stands for Artificial Intelligence, enabling machines to mimic human intelligence for tasks such as learning, problem-solving, and decision-making.</div>`
}
]
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let foundPrompt = this.promptsData.find((promptObj) => promptObj.prompt === args.prompt);
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(foundPrompt ? foundPrompt.response : defaultResponse);
}, 2000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Adding prompt suggestions
You can use the 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.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' :prompt-suggestions="promptSuggestions" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let response1 = "Use clear naming, break code into small functions, avoid repetition, write tests, and follow coding standards.";
let response2 = "Install useful extensions, set up shortcuts, enable linting, and customize settings for smoother development.";
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(args.prompt === aiassist.value.promptSuggestions[0] ? response1 : args.prompt === aiassist.value.promptSuggestions[1] ? response2 : defaultResponse);
}, 1000);
};
const promptSuggestions = [
"Best practices for clean, maintainable code?",
"How to optimize code editor for speed?"
];
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' :prompt-suggestions="promptSuggestions" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
promptSuggestions: [
"Best practices for clean, maintainable code?",
"How to optimize code editor for speed?"
]
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let response1 = "Use clear naming, break code into small functions, avoid repetition, write tests, and follow coding standards.";
let response2 = "Install useful extensions, set up shortcuts, enable linting, and customize settings for smoother development.";
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(args.prompt === defaultAiassist.promptSuggestions[0] ? response1 : args.prompt === defaultAiassist.promptSuggestions[1] ? response2 : defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Adding suggestions header
You can use the promptSuggestionsHeader property to set the header text for the prompt suggestions in the AI AssistView.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' prompt-suggestions-header="Suggested Prompts" :prompt-suggestions="promptSuggestions" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let response1 = "Use clear naming, break code into small functions, avoid repetition, write tests, and follow coding standards.";
let response2 = "Install useful extensions, set up shortcuts, enable linting, and customize settings for smoother development.";
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(args.prompt === aiassist.value.promptSuggestions[0] ? response1 : args.prompt === aiassist.value.promptSuggestions[1] ? response2 : defaultResponse);
}, 1000);
};
const promptSuggestions = [
"Best practices for clean, maintainable code?",
"How to optimize code editor for speed?"
];
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' prompt-suggestions-header="Suggested Prompts" :prompt-suggestions="promptSuggestions" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
promptSuggestions: [
"Best practices for clean, maintainable code?",
"How to optimize code editor for speed?"
]
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let response1 = "Use clear naming, break code into small functions, avoid repetition, write tests, and follow coding standards.";
let response2 = "Install useful extensions, set up shortcuts, enable linting, and customize settings for smoother development.";
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(args.prompt === defaultAiassist.promptSuggestions[0] ? response1 : args.prompt === defaultAiassist.promptSuggestions[1] ? response2 : defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Adding prompt iconCss
You can customize the appearance of the prompter avatar by using the promptIconCss property.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' promptIconCss="e-icons e-user" :prompts="promptsData" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let foundPrompt = promptsData.find((promptObj) => promptObj.prompt === args.prompt);
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(foundPrompt ? foundPrompt.response : defaultResponse);
}, 1000);
};
const promptsData = [
{
prompt: "What is AI?",
response: `<div>AI stands for Artificial Intelligence, enabling machines to mimic human intelligence for tasks such as learning, problem-solving, and decision-making.</div>`
}
];
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' promptIconCss="e-icons e-user" :prompts="promptsData" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
promptsData: [
{
prompt: "What is AI?",
response: `<div>AI stands for Artificial Intelligence, enabling machines to mimic human intelligence for tasks such as learning, problem-solving, and decision-making.</div>`
}
]
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let foundPrompt = this.promptsData.find((promptObj) => promptObj.prompt === args.prompt);
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(foundPrompt ? foundPrompt.response : defaultResponse);
}, 2000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Adding response iconCss
You can use the 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.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' responseIconCss="e-icons e-bullet-4" :prompts="promptsData" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let foundPrompt = promptsData.find((promptObj) => promptObj.prompt === args.prompt);
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(foundPrompt ? foundPrompt.response : defaultResponse);
}, 1000);
};
const promptsData = [
{
prompt: "What is AI?",
response: `<div>AI stands for Artificial Intelligence, enabling machines to mimic human intelligence for tasks such as learning, problem-solving, and decision-making.</div>`
}
];
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.e-icons.e-bullet-4:before {
font-size: 30px;
}
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' responseIconCss="e-icons e-bullet-4" :prompts="promptsData" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
promptsData: [
{
prompt: "What is AI?",
response: `<div>AI stands for Artificial Intelligence, enabling machines to mimic human intelligence for tasks such as learning, problem-solving, and decision-making.</div>`
}
]
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let foundPrompt = this.promptsData.find((promptObj) => promptObj.prompt === args.prompt);
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(foundPrompt ? foundPrompt.response : defaultResponse);
}, 2000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.e-icons.e-bullet-4:before {
font-size: 30px;
}
</style>
Show or hide clear button
You can use the 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.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' show-clear-button="true" prompt="What tools or apps can help me prioritize tasks?" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(defaultResponse);
}, 1000);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' show-clear-button="true" prompt="What tools or apps can help me prioritize tasks?" :prompt-request="onPromptRequest" ref="aiassist"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 2000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>