Syncfusion aspnetcore ai assistview
Skill syncfusion/aspnetcore-ui-components-skills/skills/syncfusion-aspnetcore-ai-assistview
This repository contains AI Skills of ASPNET Core UI Components
npx -y skills add syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-ai-assistviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Implement the Syncfusion ASP.NET Core AI AssistView control for interactive AI-powered assistance interfaces. Use this skill when implementing AI assistants, prompt suggestions, custom views, file attachments, markdown responses, customizable templates, regenerable responses, thinking capabilities (chain-of-thoughts), generative UI blocks, Text-to-Speech conversion, Speech-to-Text voice input, or customizing advanced AI conversation UI in ASP.NET Core applications.
SKILL.md
11.0 KB, as published. Nobody here has run it
Syncfusion ASP.NET Core AI AssistView Control
Overview
The Syncfusion AI AssistView is a comprehensive component for building AI-powered assistance interfaces in ASP.NET Core applications. It provides support for:
- Configurable prompt suggestions with custom headers
- Prompt-response collections with markdown rendering
- File attachments with validation and size restrictions
- Custom views and templates for complete UI control
- Event-driven architecture for real-time interaction
- Toolbar customization for both header and footer areas
- Icon customization for prompts and responses
Key Features
- Prompt Suggestions: Guide users with predefined suggestions
- Markdown Support: Render formatted content with built-in markdown converter
- Custom Templates: Customize banners, prompts, responses, and suggestions
- File Attachments: Enable users to attach files with the prompt
- Multiple Views: Support for Assist and Custom view types
- Toolbar Customization: Customize header and footer toolbar items
- Icon Customization: Personalize prompt and response avatars
- Stop Responding: Cancel in-progress AI responses with the stop responding button
- Header Visibility: Show or hide the header bar via
showHeader - Helpful Feedback: Mark responses as helpful using
PromptModel.isResponseHelpful - Event Driven: Full event lifecycle for complete control
- Methods: Dynamic prompt execution and response management
- Regenerate Responses: Request alternative AI responses for existing prompts without resubmission
- Thinking Capabilities: Visualize AI reasoning stages and workflow through chain-of-thoughts blocks
- Generative UI: Render dynamic interactive tools and UI elements within AI responses
- Text-to-Speech: Convert AI responses into spoken audio with customizable voice settings
- Speech-to-Text: Convert spoken words into text using the device's microphone for voice-based prompt input
Navigation Guide
Getting Started
π Read: references/getting-started.md
- Installation and NuGet package setup
- TagHelper registration and configuration
- CSS/script resource linking
- Basic control initialization
- Prompt suggestions and responses configuration
Configuring Prompts and Responses
π Read: references/assist-view-configuration.md
- Setting prompt text and placeholders
- Prompt-response collection initialization
- Markdown response rendering
- Prompt suggestions with headers
- Avatar customization (prompt and response icons)
- Clear button and scroll-to-bottom features
- Show or hide the header bar (
showHeader) - Marking a response as helpful (
PromptModel.isResponseHelpful)
Appearance and Styling
π Read: references/appearance-customization.md
- Width and height configuration
- CSS class customization
- Custom styling and theming
- Component container styling
Handling Events
π Read: references/events-handling.md
- Created event for initialization
- PromptRequest event for handling prompts (with
cancel,attachedFiles,promptSuggestions) - PromptChanged event for text changes (with
value,previousValue) - StopRespondingClick event for cancelling in-progress responses
- Attachment events (upload, success, failure, removed, click)
Using Methods and APIs
π Read: references/methods-and-apis.md
- addPromptResponse() method for string and object responses
- executePrompt() method for dynamic prompt execution
- Public method signatures and usage patterns
Templates and Custom Views
π Read: references/templates-and-views.md
- Banner templates for welcome messages
- Prompt item templates for custom prompt rendering
- Response item templates for response customization
- Suggestion item templates
- Footer templates for custom actions
- Custom view types and active view configuration
Toolbar Configuration
π Read: references/toolbar-and-items.md
- Footer toolbar items and positioning
- Header toolbar configuration with icons
- Item types (Button, Separator, Input)
- Item alignment, visibility, and disabled states
- Tooltip text and CSS classes
- Built-in toolbar items for prompts and responses
- Custom toolbar items with templates and events
ToolbarItemClickedEventArgsβ item, dataIndex, cancel, event, nameitemClickedevent for prompt and response toolbar items- Regenerate responses with alternative response navigation
File Attachments
π Read: references/file-attachments.md
- Enabling file attachments
- Setting save and remove URLs
- File type restrictions (
allowedFileTypes) - Maximum file size configuration
- Maximum attachment count limits
- Custom attachment templates (attachmentTemplate)
- Pre-loading attached files in prompts (
PromptModel.attachedFiles)
Advanced Response Features
Thinking Capabilities
π Read: references/chain-of-thoughts.md
- Visualizing AI reasoning stages (thinking blocks, stages, status updates)
- Configuring thinking blocks with blockType, title, content, and collapsed state
- Adding stages with completion status (
completed,inprogress,failed) - Inline context items in stages with clickable badges
editableContextClickedevent for custom context actions- Block template and item template customization
Generative UI
π Read: references/generative-ui.md
- Registering custom tools with
registerToolUImethod - Tool templates and handlers for dynamic UI rendering
- Adding tools to prompt responses via
blocksproperty - Configuring AI service system prompts for generative responses
- Tool blocks with toolName and props for interactive components
Text-to-Speech
π Read: references/text-to-speech.md
- Enabling built-in Text-to-Speech functionality with
e-assist-audioicon - Converting AI responses into spoken audio (Web Speech API)
- Configuring speech settings with
e-aiassistview-textToSpeechSettingstag helper - Speech customization properties (language, speechPitch, speechRate, volume, voice)
Speech-to-Text
π Read: references/speech-to-text.md
- Enabling built-in Speech-to-Text functionality for voice input
- Converting spoken words into text using Web Speech API
- Configuring speech recognition with
e-aiassistview-speechToTextSettingstag helper - Speech recognition properties (language, buttonSettings, tooltipSettings, allowInterimResults)
- Handling speech events (onStart, onStop, transcriptChanged, onError)
- Real-time transcription with interim results support
Quick Start
@using Syncfusion.EJ2.InteractiveChat;
<div class="aiassist-container" style="height: 350px; width: 650px;">
<ejs-aiassistview id="aiAssistView" promptRequest="onPromptRequest" created="onCreated"></ejs-aiassistview>
</div>
<script>
var assistObj;
function onCreated() {
assistObj = this;
}
function onPromptRequest(args) {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AI AssistView control 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.';
assistObj.addPromptResponse(defaultResponse);
}, 2000);
}
</script>
Common Patterns
Pattern 1: Adding Prompt Suggestions
@using Syncfusion.EJ2.InteractiveChat;
@{
var suggestions = new string[] { "How do I prioritize my tasks?", "How can I improve my time management skills?" };
}
<div class="aiassist-container" style="height: 350px; width: 650px;">
<ejs-aiassistview id="aiAssistView"
promptSuggestions="@suggestions"
promptRequest="onPromptRequest"
created="onCreated">
</ejs-aiassistview>
</div>
<script>
var assistObj;
function onCreated() {
assistObj = this;
}
function onPromptRequest(args) {
setTimeout(() => {
assistObj.addPromptResponse('Response for: ' + args.prompt);
}, 2000);
}
</script>
Pattern 2: Markdown Response Rendering
@using Syncfusion.EJ2.InteractiveChat;
@using System.Text.Json;
@{
var markdownData = new[]
{
new {
prompt = "What is Markdown?",
response = "# Markdown Guide\n\nMarkdown is a lightweight markup language:\n\n- **Headers:** Use `#`, `##`, `###`\n- **Bold:** `**text**` for bold\n- **Lists:** Use `-` for bullet points",
suggestions = new string[] {"How do I use bold?"}
}
};
var promptsJson = JsonSerializer.Serialize(markdownData);
}
<div class="aiassist-container" style="height: 350px; width: 650px;">
<ejs-aiassistview id="aiAssistView"
prompts="@markdownData"
promptRequest="onPromptRequest"
created="onCreated">
</ejs-aiassistview>
</div>
<script>
var assistObj;
var prompts = @Html.Raw(promptsJson);
function onCreated() {
assistObj = this;
}
function onPromptRequest(args) {
setTimeout(() => {
var foundPrompt = prompts.find(prompt => prompt.prompt == args.prompt);
if (foundPrompt) {
assistObj.addPromptResponse(foundPrompt.response);
}
}, 2000);
}
</script>
Pattern 3: File Attachments
@using Syncfusion.EJ2.InteractiveChat;
<div class="aiassist-container" style="height: 350px; width: 650px;">
<ejs-aiassistview id="aiAssistView"
enableAttachments="true"
promptRequest="onPromptRequest"
created="onCreated">
<e-aiassistview-attachmentsettings
[email protected]("https://services.syncfusion.com/aspnet/production/api/FileUploader/Save")
[email protected]("https://services.syncfusion.com/aspnet/production/api/FileUploader/Remove")>
</e-aiassistview-attachmentsettings>
</ejs-aiassistview>
</div>
<script>
var assistObj;
function onCreated() {
assistObj = this;
}
function onPromptRequest(args) {
setTimeout(() => {
assistObj.addPromptResponse('Processing your prompt with attachments');
}, 2000);
}
</script>