<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~files/atom-premium.xsl"?>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:feedpress="https://feed.press/xmlns" xmlns:media="http://search.yahoo.com/mrss/" xmlns:podcast="https://podcastindex.org/namespace/1.0">
  <feedpress:locale>en</feedpress:locale>
  <link rel="hub" href="https://feedpress.superfeedr.com/"/>
  <logo>https://static.feedpress.com/logo/telerik-blogs-productivity-6185247624f05.jpg</logo>
  <title type="text">Telerik Blogs | Productivity</title>
  <subtitle type="text">The official blog of Progress Telerik - expert articles and tutorials for developers.</subtitle>
  <id>uuid:c35d869e-6c81-4363-8e06-a9f5732b9144;id=7291</id>
  <updated>2026-05-25T00:08:04Z</updated>
  <link rel="alternate" href="https://www.telerik.com/"/>
  <link rel="self" type="application/atom+xml" href="https://feeds.telerik.com/blogs/productivity"/>
  <entry>
    <id>urn:uuid:ce866956-4550-4c69-a546-7ae35e4fdbc6</id>
    <title type="text">Creating Reliable AI Resources with Telerik Agent Tools API</title>
    <summary type="text">The RAG resources you create to use with your LLMs are strategic resources, just like your organization’s databases. Telerik Agent Tools let you create the custom tools for managing those resources.</summary>
    <published>2026-05-20T13:36:52Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Peter Vogel </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17344838/creating-reliable-ai-resources-telerik-agent-tools-api"/>
    <content type="text"><![CDATA[<p><span class="featured">The RAG resources you create to use with your LLMs are strategic resources, just like your organization&rsquo;s databases. Telerik Agent Tools let you create the custom tools for managing those resources.</span></p><p>Like your organization&rsquo;s databases, you should regard your AI resources as strategic, <em>organizational</em> resources. And, like the data in your organization&rsquo;s databases, you need to manage the content used by your AI resources to enable those resources give you reliable, grounded answers. Telerik Agent Tools API lets gives you the tools for automating the process of creating and maintaining the content in your AI resources.</p><p>In an earlier post, I showed how to use Progress Telerik <a target="_blank" href="https://www.telerik.com/document-processing-libraries">Document Processing Libraries</a> (DPL) to create an <a target="_blank" href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-1-configuring-llm-azure-ollama">AI resource with content from existing documents and then tie that resource to a Large Language Model</a> (LLM) that your users could query.</p><p>Tying an LLM to your content creates a <a target="_blank" href="https://www.telerik.com/blogs/understanding-rag-retrieval-augmented-generation">Resource Augmented Generation</a> (RAG) resource that helps get your users grounded answers driven by the content you load into your resource. And using the DPL toolset is a great solution when you&rsquo;re building an application that creates a RAG resource &ldquo;as needed.&rdquo;</p><p>But if you want to reliably create/update a RAG resource that will be used (and reused) by multiple applications and multiple users, then you need the Telerik Agent Tools API. Once you have a reliable process for creating your RAG resource, the Agent Tools API also lets you then use that resource to support your users by integrating with Microsoft&rsquo;s latest toolset for responding to your user&rsquo;s prompts.</p><p>In this post, I&rsquo;m going to cover how to construct an automated workflow for creating a RAG resource that can be used across applications and users. In my next post, I&rsquo;ll cover how to use that resource with the LLM of your choice.</p><h2 id="building-a-rag-resource-workflow">Building a RAG Resource Workflow</h2><p>You can use the Tools API to create an interactive application that lets you manage the documents that make up your resource&rsquo;s content. However, for this post, I&rsquo;m going to assume a simpler process than that (though I&rsquo;ll cover all the tools you&rsquo;d need for an interactive solution).</p><p>For this post, I&rsquo;m going to assume there&rsquo;s a folder that holds all the documents with the content that should be in my RAG resource (which might be Word documents, spreadsheets, PDF, text files&mdash;basically, all the content that you can load with Telerik DPL tools). Users control what goes into my resource by adding and removing documents from that folder.</p><p>In this case study, then, I build my RAG resource by running a batch program that reads all the documents in the folder, adds them all to a RAG resource in memory, and then saves the new resource, replacing any existing version with a new, updated version.</p><h2 id="configuring-your-project">Configuring Your Project</h2><p>To start building an application to manage your RAG resource, you must first add the Telerik.Documents.AI.Tools.Core NuGet package to your project. After that, you need the specific Telerik packages that support the document types that you&rsquo;ll add to your RAG resource.</p><p>For my case study, I&rsquo;m just going to use PDF documents, so I just need the &ldquo;Fixed&rdquo; packages:</p><pre><code>- Telerik.Documents.AI.Tools.Fixed.Core
- Telerik.Documents.AI.AgentTools.Fixed 
</code></pre><p>If you&rsquo;re working with spreadsheets, you&rsquo;ll want to add the equivalent Spreadsheet packages:<br />- Telerik.Documents.AI.Tools.Spreadsheet.Core<br />-Telerik.Documents.AI.AgentTools.Spreadsheet)</p><p>To support Microsoft Word, HTML and text documents, you also need to add the Telerik.Documents.AI.Tools.Flow.Core package.</p><p>And, of course, there&rsquo;s no reason you couldn&rsquo;t make your life simpler by adding all the <a target="_blank" href="http://Telerik.Documents.AI">Telerik.Documents.AI</a>.* libraries to your application, even if you don&rsquo;t need to use them all right now. In this case study, I also didn&rsquo;t take advantage of the some of the other packages available&mdash;the Telerik.Documents.AI.AgentTools.Conversion package that handles conversions between document types, for example.</p><h2 id="building-your-rag-resource">Building Your RAG Resource</h2><p>The process for creating a RAG resource begins with creating an in-memory repository which holds your documents. A repository can hold one of three categories of documents: spreadsheets, PDF documents or Word and Word-related documents.</p><p>In my case study, I&rsquo;m only going to work with PDF documents (which Progress Telerik classifies as &ldquo;Fixed&rdquo; documents), so I created an <code>inMemoryFixedDocumentRepository</code> object and then stored a reference to that repository in an <code>IFixedDocumentRepository</code> variable.</p><p>The code to do that looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">IFixedDocumentRepository pdfRepo <span class="token operator">=</span> 
          <span class="token keyword">new</span> <span class="token class-name">InMemoryFixedDocumentRepository</span><span class="token punctuation">(</span> <span class="token keyword">new</span> <span class="token class-name">TimeSpan</span><span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">,</span> <span class="token number">2</span><span class="token punctuation">,</span> <span class="token number">0</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>All of the three types of repositories look very much alike though (they all share a common <code>IDocumentRepository</code> interface, for example). As a result, working with other document types is similar.</p><p>If, for example, you were loading spreadsheet files (&ldquo;Workbook&rdquo; documents), you&rsquo;d use the <code>InMemoryWorkbookRepository</code> object and the <code>IWorkbookRepository</code> interface. For Word and Word-related documents (&ldquo;Flow&rdquo; documents), you&rsquo;d use the <code>InMemoryFlowDocumentRepository</code> object and the <code>IFlowDocumentRepository</code> interface.</p><p>Repositories have some built-in functionality (they all include a <code>ListDocuments</code> method that returns a list of documents in the repository, for example). You will, however, want to extend your repository by attaching one or more toolsets containing tools that add additional functionality to your repository.</p><p>For my case study, I just needed to be able to import documents into an empty repository so the only toolset I attached was the <code>FixedFileManagementAgentTools</code> toolset that supports working with a PDF repository and has import (and export) methods for individual documents. To that toolset looks like this, I pass a reference to my repository, I pass a reference to my repository and the path to the folder containing the documents that the tools will work with:</p><pre class=" language-csharp"><code class="prism  language-csharp">FixedFileManagementAgentTools pdfFileTools <span class="token operator">=</span> 
            <span class="token keyword">new</span> <span class="token class-name">FixedFileManagementAgentTools</span><span class="token punctuation">(</span>pdfRepo<span class="token punctuation">,</span> repoFolderPath<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>You can add additional toolsets if you need additional functionality or need to work with more folders. If, for example, I wanted to work with PDF forms, I could add the <code>FixedDocumentFormAgentTools</code> toolset to my repository. When creating a toolset, you&rsquo;ll always need to pass a reference to the repository the toolset will be attached to, but other parameters (if any) will vary from one toolset to another.</p><h2 id="managing-repositories-with-registries">Managing Repositories with Registries</h2><p>If you&rsquo;re going to be working with multiple repositories in your workflow, you might want to create a registry to simplify managing your repositories. In my case study, for example, where I&rsquo;m potentially loading several different kinds of files, I could end up supporting all three types of repositories (PDF files, spreadsheets, Word and Word-related documents)&mdash;creating a registry simplifies switching between the different types of repositories.</p><p>Registries are created using the <code>DocumentRepositoryRegistry</code> object and support registering one repository of each document category using their <code>RegisterRespository</code> method.</p><p>You can then retrieve the repository you want from a registry by using the registry&rsquo;s <code>TryGetRepository</code> method, passing two parameters: the document type of the repository you want and an <code>out</code> parameter of type <code>IDocumentRepository</code>. Like other TryGet* methods, the <code>TryGetRepository</code> method returns return true if the method finds the repository you want and false if the method does not (the actual repository, if found, is loaded into the method&rsquo;s second, <code>out</code> parameter).</p><p>The following code creates a registry, registers my PDF repository using the <code>RegisterRepository</code> method and then immediately retrieves the repository using the registry&rsquo;s <code>TryGetRepository</code> method. Because the repository is returned using the common <code>IDocumentRepository</code> interface type, I cast the returned reference to the <code>IFixedDocumentRepository</code> type before working with it:</p><pre class=" language-csharp"><code class="prism  language-csharp">DocumentRepositoryRegistry registry <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

registry<span class="token punctuation">.</span><span class="token function">RegisterRepository</span><span class="token punctuation">(</span>DocumentType<span class="token punctuation">.</span>FixedDocument<span class="token punctuation">,</span> pdfRepo<span class="token punctuation">)</span><span class="token punctuation">;</span>

<span class="token keyword">if</span> <span class="token punctuation">(</span>registry<span class="token punctuation">.</span><span class="token function">TryGetRepository</span><span class="token punctuation">(</span>DocumentType<span class="token punctuation">.</span>FixedDocument<span class="token punctuation">,</span> 
                                                           <span class="token keyword">out</span> IDocumentRepository<span class="token operator">?</span> repo<span class="token punctuation">)</span> <span class="token punctuation">)</span>
<span class="token punctuation">{</span>
     IFixedDocumentRepository fixedRepo <span class="token operator">=</span> <span class="token punctuation">(</span>IFixedDocumentRepository<span class="token punctuation">)</span> repo<span class="token punctuation">;</span>
    <span class="token comment">//&hellip;work with the fixedRepo repository</span>
<span class="token punctuation">}</span>
</code></pre><p>You&rsquo;ll also want to create a registry if, as part of your workflow, you want to support converting documents between formats or merging multiple documents. The toolsets that support that are <code>ConvertDocumentsAgentTool</code> and <code>MergeDocumentsAgentTool</code> toolsets and they attach to registries rather than repositories.</p><h2 id="loading-saving-and-retrieving-your-repository">Loading, Saving and Retrieving Your Repository</h2><p>Adding a document to a repository is easy: Just call the appropriate import method on the appropriate toolset that&rsquo;s tied to the repository you want to update.</p><p>To add a PDF document to my repository, for example, I&rsquo;d use the <code>ImportFixedDocument</code> method on my <code>FixedFileManagementAgentTools</code> toolset, tied to my PDF repository. To use the <code>ImportFixedDocument</code> method, I pass the path to the document I want to load and its document format (e.g., PDF, XLSX, etc.). Optionally, I can pass a name for the document which will be returned as part of the <code>ListDocuments</code> method.</p><p>Which means that importing a PDF document into my repository would look like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">CallToolResponse res <span class="token operator">=</span>
          pdfRepoTools<span class="token punctuation">.</span><span class="token function">ImportFixedDocument</span><span class="token punctuation">(</span>documentPath<span class="token punctuation">,</span> 
                                                                                         DocumentFormat<span class="token punctuation">.</span>PDF<span class="token punctuation">,</span>
                                                                                          Path<span class="token punctuation">.</span><span class="token function">GetFileNameWithoutExtension</span><span class="token punctuation">(</span>documentPath<span class="token punctuation">)</span>
                                                                                        <span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>The <code>CallToolResponse</code> object&rsquo;s <code>IsError</code> property will be set to <code>true</code> if your import succeeds (and the <code>Message</code> property will contain additional information regardless of whether the call succeeds or fails).</p><p>Once I&rsquo;ve added all the documents from my folder to my repository, I can save my repository with all of its content to a single file using my repository&rsquo;s <code>MergeAndExport</code> method. The <code>MergeAndExport</code> method requires three parameters:</p><ul><li>An array of the <code>id</code> property for each of the documents in the repository. You can use that array both to control which documents are exported and the merge order of the documents. I didn&rsquo;t bother and just used a LINQ <code>Select</code> method to retrieve all the <code>id</code> property values.</li><li>A <code>FileStream</code> object that points to your repository file (I set this up to overwrite my repository every time).</li><li>The document type for the file (<code>PDF</code>, in my case).</li></ul><p>You must close your <code>FileStream</code> after you finish exporting your documents. As a result, the code to export my repository of PDF documents would look like this:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">string</span><span class="token punctuation">[</span><span class="token punctuation">]</span> ids <span class="token operator">=</span> pdfRepo<span class="token punctuation">.</span><span class="token function">ListDocuments</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">Select</span><span class="token punctuation">(</span> doc <span class="token operator">=</span><span class="token operator">&gt;</span> doc<span class="token punctuation">.</span>Id <span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">ToArray</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
FileStream fs <span class="token operator">=</span>  <span class="token keyword">new</span> <span class="token class-name">FileStream</span><span class="token punctuation">(</span>repoFilePath<span class="token punctuation">,</span> FileMode<span class="token punctuation">.</span>CreateNew<span class="token punctuation">)</span><span class="token punctuation">,</span>
                                 
repo<span class="token punctuation">.</span><span class="token function">MergeAndExport</span><span class="token punctuation">(</span>ids<span class="token punctuation">,</span>
                                                fs<span class="token punctuation">,</span>  
                                                DocumentFormat<span class="token punctuation">.</span>PDF<span class="token punctuation">)</span><span class="token punctuation">;</span>
fs<span class="token punctuation">.</span><span class="token function">Close</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
</code></pre><p>You can now tie that file to an LLM using Microsoft <code>ChatClientAgent</code> object to let your users query your RAG resource. I&rsquo;ll walk through how to do that in my next post.</p><aside><hr data-sf-ec-immutable="" /><div class="row"><div class="col-4 u-normal-full u-small-mb0"><h4 class="u-fs20 u-fw5 u-lh125 u-mb0">Get Access to These Tools and More</h4></div><div class="col-8"><p class="u-fs16 u-mb0">The free 30-day trial of <a target="_blank" href="https://www.telerik.com/devcraft">Telerik DevCraft</a> lets you really kick the tires for yourself. <a target="_blank" href="https://www.telerik.com/try/devcraft-ultimate">Try it today!</a></p></div></div></aside><img src="https://feeds.telerik.com/link/23068/17344838.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:76fee4ac-a66f-4d26-a5ac-69295f6514a1</id>
    <title type="text">Creating a Custom AI Agent with Telerik Tools 6: Embedding Conversational and Invisible Agents</title>
    <summary type="text">Different kinds of AI-enabled applications need different UIs. Progress has the components you need for all of them.</summary>
    <published>2026-05-13T12:09:46Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Peter Vogel </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17339809/creating-custom-ai-agent-telerik-tools-6-embedding-conversational-invisible-agents"/>
    <content type="text"><![CDATA[<p><span class="featured">For some AI-enabled applications, your user will want to have a conversation with your AI agent. Other times, your user will want your agent to stay out of the way until needed. With the right UI component, you can handle both kinds of applications.</span></p><p>By themselves, AI agents can be useful. Integrated into an application, however, a custom AI agent can provide users with the ability to navigate the application and to better understand the business area that the application is part of.</p><p>Progress provides multiple tools for embedding AI agents into your application&rsquo;s UI. In previous posts, for example, I&rsquo;ve looked at Progress Telerik and Kendo UI AI Prompt components in JavaScript [in post 5](Creating a Custom AI Agent with Telerik Tools: Creating an Interactive UI in JavaScript) and Blazor [in post 4](Creating a Custom AI Agent with Telerik Tools: Crafting an Interactive Blazor UI). In this post, I&rsquo;m going to address two different UI scenarios where the AI Prompt might not be your best choice.</p><p>The first scenario is when your AI agent <em>isn&rsquo;t</em> the point of your application&mdash;it&rsquo;s just a useful tool that your users can invoke when they need it. The AI Prompt component isn&rsquo;t necessarily your best choice there because, by default, the AI Prompt takes over a significant portion of your application&rsquo;s UI (though you can customize that using the AI Prompt&rsquo;s various templates). Out of the box, however, the <a target="_blank" href="https://www.telerik.com/kendo-jquery-ui/documentation/controls/inline-aiprompt/overview">Inline AIPrompt</a> provides a compact interface that users can bring up when they need your agent and, equally important, dismiss it when they don&rsquo;t need your agent.</p><p>The AI Prompt component also assumes a specific workflow, with the user alternatively entering a prompt and viewing the current output from your agent (along with a history of responses to previous prompts). But when the interaction with your AI agent <em>is</em> the point of your application, you might want to create more natural back-and-forth conversational interaction between your user and the agent. The Telerik Chat component will let you do that, again, out of the box.</p><p>I&rsquo;m going to show how to use both in this post.</p><p>By the way (which means you can skip this paragraph&mdash;it&rsquo;s all background): In this post, I&rsquo;m assuming the existence of a custom AI agent that provides application-specific support to your users. That means that you&rsquo;ve [selected a Large Language Model](reference to Creating a Custom AI Agent with Telerik Tools: Configuring an LLM for Azure or Ollama) (LLM) for processing your user&rsquo;s input, loaded your own content into your [custom AI agent](reference to Creating a Custom AI Agent with Telerik Tools: Loading and Accessing Your Agent&rsquo;s Content) (about 10 lines of code) and written another 10 lines of code to tie your agent into your application. For a JavaScript application, you&rsquo;ll need to wrap that code in a web service (I covered the, literally, two lines of code to make that happen at the start of a [post on using the AI Prompt component from JavaScript](reference to Creating a Custom AI Agent with Telerik Tools: Creating an Interactive UI in JavaScript)) and write the five lines of JavaScript code to all your agent. That probably sounds like a lot. It is, however, only about two dozen lines of code to give you an AI-enabled application with domain-specific knowledge.</p><h2 id="letting-the-user-access-your-ai-agent-when-they-want-it">Letting the User Access Your AI Agent When They Want It</h2><p>I&rsquo;m going to start with the scenario where you want to enable your user to invoke your AI agent when they need it and ignore the agent the rest of the time. The Inline AIPrompt lets you do that: implement a minimal user interface that pops up when the user needs to send a prompt to your agent and then review your agent&rsquo;s response:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/aiprompt-javascript-7---inline-aiprompt.png?sfvrsn=9294e5a3_2" alt="A screenshot of a Web page discussing creating asynchronous applications with Azure Storage queues with a dialog box hovering over it. The dialog box has a textbox at the bottom where the user has typed in a question (“What code is required to write a message?”). Above the textbox, a panel displays the code." /></p><p>I&rsquo;m going to use the <a target="_blank" href="https://www.telerik.com/kendo-jquery-ui/jquery-inline-ai-prompt">Kendo UI for jQuery Inline AIPrompt</a> in this case study, but there are also versions of the component for <a target="_blank" href="https://www.telerik.com/kendo-react-ui/components/conversationalui/inline-ai-prompt/getting-started">React</a>, <a target="_blank" href="https://www.telerik.com/kendo-angular-ui/angular-inline-ai-prompt">Angular</a>, <a target="_blank" href="https://www.telerik.com/aspnet-core-ui/inline-ai-prompt">ASP.NET Core</a>, <a target="_blank" href="https://www.telerik.com/aspnet-mvc/inline-ai-prompt">ASP.NET MVC</a> and <a target="_blank" href="https://www.telerik.com/blazor-ui/documentation/components/inlineaiprompt/overview">Blazor</a>.</p><h3 id="configuring-the-inline-ai-prompt">Configuring the Inline AI Prompt</h3><p>Your first step is to add the Inline AIPrompt to your webpage with a <code>&lt;div&gt;</code> element that has its <code>id</code> attribute set to some name (I used <code>customAgent</code>):</p><pre class=" language-html"><code class="prism  language-html"><span class="token tag"><span class="token tag"><span class="token punctuation">&lt;</span>div</span> <span class="token attr-name">id</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>customAgent<span class="token punctuation">"</span></span> <span class="token punctuation">/&gt;</span></span>
</code></pre><p>You can place that <code>&lt;div&gt;</code> element wherever you want in your page&rsquo;s body (I put it near the top of my application&rsquo;s HTML, but it really doesn&rsquo;t matter).</p><p>Next, you need to configure your Inline AIPrompt component. You do that by writing a jQuery command to find your <code>&lt;div&gt;</code> element, passing the name you put in the <code>&lt;div&gt;</code> element&rsquo;s <code>id</code> attribute.</p><p>You then call the <code>kendoInlineAIPrompt</code> function from the retrieved element, passing a configuration object. The <code>kendoInlineAIPrompt</code> function returns an object and you then call that object&rsquo;s <code>data</code> function, passing the string <code>kendoInlineAIPrompt</code>. That, in turn, will return an object you can use to manage the component.</p><p>You only want to do this configuration once, so you should tuck that code into jQuery&rsquo;s ready function. That means you&rsquo;ll end up with code like this to set up your component:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span> <span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token operator">=&gt;</span>
<span class="token punctuation">{</span>
  <span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoInlineAIPrompt</span><span class="token punctuation">(</span>
    <span class="token punctuation">{</span>
      <span class="token comment">//&hellip;configuration object</span>
     <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">data</span><span class="token punctuation">(</span><span class="token string">"kendoInlineAIPrompt"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>In the customization object that you pass to the <code>kendoInlineAIPrompt</code> function, you need to set two properties on the object:</p><ul><li><code>isStreaming</code>: Set this to <code>true</code> to let you update the component&rsquo;s UI with the output from your custom AI agent</li><li><code>promptRequest</code>: Set this to a function to be called when your user enters a prompt and clicks the &ldquo;go&rdquo; button in the Inline AIPrompt&rsquo;s UI</li></ul><p>By the way, you don&rsquo;t have to put a function in the <code>promptRequest</code> property. You can configure the Inline AIPrompt to <a target="_blank" href="https://www.telerik.com/kendo-jquery-ui/documentation/controls/inline-aiprompt/get-started">call an LLM directly</a> by setting your configuration object&rsquo;s <code>service</code> and <code>systemPrompt</code> properties. Using the <code>promptRequest</code> function, however, simplifies calling a custom AI agent.</p><p>A minimal implementation might look like this:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token keyword">let</span> ca <span class="token operator">=</span> <span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoInlineAIPrompt</span><span class="token punctuation">(</span>
 <span class="token punctuation">{</span>
   isStreaming<span class="token punctuation">:</span> <span class="token boolean">true</span><span class="token punctuation">,</span>
   promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span> <span class="token punctuation">(</span>req<span class="token punctuation">)</span> <span class="token punctuation">{</span>
     <span class="token comment">//&hellip;function code           </span>
   <span class="token punctuation">}</span>
 <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">data</span><span class="token punctuation">(</span><span class="token string">"kendoInlineAIPrompt"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>         
</code></pre><p>Your <code>promptRequest</code> function will be passed a parameter. From that parameter, you can retrieve the user&rsquo;s prompt by reading a property cleverly called <code>prompt</code>. Once you have the user&rsquo;s prompt, you can pass it to your agent and catch your agent&rsquo;s response. In my case, that means passing the prompt to my JavaScript function that calls my AI agent&rsquo;s web service.</p><p>Once you get a response from your agent, you need to add it to the Inline AIPrompt&rsquo;s UI. To do that, you just need call the component&rsquo;s <code>updatePromptOutputContent</code> function, passing the output from your agent.</p><p>Since the JavaScript function that calls my agent is called <code>asyncAppAgent</code> and returns the agent&rsquo;s response as a string ready to add to the Inline AIPrompt&rsquo;s UI, my <code>promptResult</code> function is a single line of code (my web service function is asynchronous so I have to use the <code>await</code> keyword when calling it and flag the function as <code>async</code>):</p><pre class=" language-javascript"><code class="prism  language-javascript">ca <span class="token operator">=</span> <span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoInlineAIPrompt</span><span class="token punctuation">(</span>
  <span class="token punctuation">{</span>
    isStreaming<span class="token punctuation">:</span> <span class="token boolean">true</span><span class="token punctuation">,</span>
    promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>req<span class="token punctuation">)</span> 
      <span class="token punctuation">{</span>
        <span class="token keyword">this</span><span class="token punctuation">.</span><span class="token function">updatePromptOutputContent</span><span class="token punctuation">(</span>                                                       
          <span class="token keyword">await</span> <span class="token function">asyncAppAgent</span><span class="token punctuation">(</span>req<span class="token punctuation">.</span>prompt<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
      <span class="token punctuation">}</span>
  <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">data</span><span class="token punctuation">(</span><span class="token string">"kendoInlineAIPrompt"</span><span class="token punctuation">)</span><span class="token punctuation">;</span> 
</code></pre><p>There&rsquo;s more you can do with the component (for example, as with the AI Prompt component, you can give the user some predefined commands to use with the component). But before you can do any of that&mdash;because, by default, the component isn&rsquo;t visible&mdash;you need give your users a way to display the Inline AIPrompt when they want it.</p><h3 id="opening-the-prompt">Opening the Prompt</h3><p>Since I&rsquo;m trying to minimize the UI footprint for my agent&rsquo;s interface, I decided to use the Kendo UI for <a target="_blank" href="https://www.telerik.com/kendo-jquery-ui/documentation/controls/menu/contextmenu/overview">jQuery Context Menu</a> to let the user invoke my prompt (you could just have a button on your page that opens Inline AIPrompt).</p><p>Since I was using the context menu (which implies giving the user choices), I also decided to give the user the ability to choose between two custom agents:</p><ul><li>One agent would be loaded with content about using the application (e.g., the application&rsquo;s user guide, enhanced with a download of questions and responses from the application&rsquo;s end user forum)</li><li>The other agent would be loaded with content about the application&rsquo;s topic area (in my case, that topic area is creating an asynchronous application and the content is from another series of <a target="_blank" href="https://www.telerik.com/blogs/coding-azure-18-creating-securing-azure-storage-queues">posts on Coding Azure</a> I wrote).</li></ul><p>The first step in using the context menu is to add a <code>&lt;ul&gt;</code> element anywhere on your page and set its <code>id</code> attribute to some name (in this case, I picked <code>selectAgentMenu</code>).</p><p>Within that <code>&lt;ul&gt;</code> element, you use <code>&lt;li&gt;</code> elements to define your popup menu&rsquo;s choices. I also (for reasons that will become obvious), assigned values to the <code>&lt;li&gt;</code> elements&rsquo; <code>name</code> attributes:</p><pre class=" language-html"><code class="prism  language-html"><span class="token tag"><span class="token tag"><span class="token punctuation">&lt;</span>ul</span> <span class="token attr-name">id</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>selectAgentMenu<span class="token punctuation">"</span></span><span class="token punctuation">&gt;</span></span>
  <span class="token tag"><span class="token tag"><span class="token punctuation">&lt;</span>li</span> <span class="token attr-name">name</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>Ask<span class="token punctuation">"</span></span><span class="token punctuation">&gt;</span></span>Ask about asynchronouse processing<span class="token tag"><span class="token tag"><span class="token punctuation">&lt;/</span>li</span><span class="token punctuation">&gt;</span></span>
  <span class="token tag"><span class="token tag"><span class="token punctuation">&lt;</span>li</span> <span class="token attr-name">name</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>Help<span class="token punctuation">"</span></span><span class="token punctuation">&gt;</span></span>Ask about using this application<span class="token tag"><span class="token tag"><span class="token punctuation">&lt;/</span>li</span><span class="token punctuation">&gt;</span></span>
<span class="token tag"><span class="token tag"><span class="token punctuation">&lt;/</span>ul</span><span class="token punctuation">&gt;</span></span>
</code></pre><p>Next, you need to configure your content menu, this time by calling the <code>kendoContextMenu</code> function on the <code>&lt;ul&gt;</code> element that defines your menu. In the configuration object you pass to this function, you must set its <code>select</code> property to a function that will be called when a user clicks a choice in the menu. That function is passed a parameter with an <code>item</code> property that holds the <code>&lt;li&gt;</code> element that defined the menu choice the user selected.</p><p>In this code, I use the element&rsquo;s <code>attr</code> function to retrieve the element&rsquo;s <code>name</code> attribute and use that value to set a variable I called mode. Later on, I&rsquo;ll use that mode variable in my Inline AIPrompt&rsquo;s <code>promptRequest</code> function to call the right AI agent. I then use the variable created when I configured my Inline AI Prompt component to display the component by calling the its <code>open</code> method:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token keyword">let</span> mode <span class="token operator">=</span> <span class="token string">""</span><span class="token punctuation">;</span>
<span class="token function">$</span><span class="token punctuation">(</span><span class="token keyword">function</span> <span class="token punctuation">(</span><span class="token punctuation">)</span> 
<span class="token punctuation">{</span>
  <span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#selectAgentMenu"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoContextMenu</span><span class="token punctuation">(</span>
    <span class="token punctuation">{</span>
      select<span class="token punctuation">:</span> <span class="token keyword">function</span> <span class="token punctuation">(</span>e<span class="token punctuation">)</span> <span class="token punctuation">{</span>
        mode <span class="token operator">=</span> <span class="token function">$</span><span class="token punctuation">(</span>e<span class="token punctuation">.</span>item<span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">attr</span><span class="token punctuation">(</span><span class="token string">"name"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>                                                
        ca<span class="token punctuation">.</span><span class="token function">open</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>           
      <span class="token punctuation">}</span>
<span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>With my context menu in place, I can enhance my <code>promptRequest</code> function to pick the AI agent, based on the user&rsquo;s menu choice:</p><pre class=" language-javascript"><code class="prism  language-javascript">promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>req<span class="token punctuation">)</span> <span class="token punctuation">{</span>
  <span class="token keyword">switch</span> <span class="token punctuation">(</span>mode<span class="token punctuation">)</span>
  <span class="token punctuation">{</span>
    <span class="token keyword">case</span> <span class="token string">"Ask"</span><span class="token punctuation">:</span>
    <span class="token keyword">this</span><span class="token punctuation">.</span><span class="token function">updatePromptOutputContent</span><span class="token punctuation">(</span>                                                       
    <span class="token keyword">await</span> <span class="token function">asyncInfoAgent</span><span class="token punctuation">(</span>req<span class="token punctuation">.</span>prompt<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>      
    <span class="token keyword">break</span><span class="token punctuation">;</span>
    <span class="token keyword">case</span> <span class="token string">"Help"</span><span class="token punctuation">:</span>
    <span class="token keyword">this</span><span class="token punctuation">.</span><span class="token function">updatePromptOutputContent</span><span class="token punctuation">(</span>                                                       
    <span class="token keyword">await</span> <span class="token function">appHelpAgent</span><span class="token punctuation">(</span>req<span class="token punctuation">.</span>prompt<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>      
    <span class="token keyword">break</span><span class="token punctuation">;</span>
  <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><p>The user can dismiss the component by clicking anywhere on the webpage, so using the resulting interface looks like this:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/integrating-ai-8---inline.gif?sfvrsn=683c9935_2" alt="An animated gif showing the user right-clicking on a web page which causes a popup menu to appear, with two menu choices. The user clicks the top menu choice which causes the menu to disappear and the Inline AIPrompt’s dialog box to appear. The user types a prompt into the textbox in the Inline AIPrompt’s UI and clicks an arrow at the right end of the textbox. A panel opens at the top of the panel with the text “Thinking…”. After a pause, the panel is filled with the response from the AI agent. The user then clicks on the page outside of the Inline AIPrompt’s dialog box and the dialog box disappears" /></p><p>At this point you have an interface to your AI agent that appears and disappears as the user needs it.</p><h2 id="conversational-ai">Conversational AI</h2><p>Sometimes, however, you want a UI that allows your user to have a conversation with your agent. You can enable <a target="_blank" href="https://demos.telerik.com/kendo-ui/chat/index">Kendo UI for jQuery Chat</a> component for that (and, again, versions of the Chat component exist for multiple other platforms). The component creates a chat UI familiar to your user, with a textbox at the bottom for your user to enter their prompt and a chat history above that to display the user&rsquo;s prompts and the agent&rsquo;s responses:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/aiprompt-javascript-9---chat-aiprompt.png?sfvrsn=cf734fba_2" alt="A web page discussing creating asynchronous processes using Azure storage queues, with a chat window at the bottom. There is a conversation in progress in the chat history part of the chat window: The user earlier asked for a summary of key issues in 50 words and an agent responded with a short paragraph." /></p><p>Your first step is to decide where on your page you want your chat dialog to appear and to add a <code>&lt;div&gt;</code> element there, with the <code>&lt;div&gt;</code> element&rsquo;s <code>id</code> attribute set to some name (I used <code>dialogAgent</code>):</p><pre class=" language-html"><code class="prism  language-html"><span class="token tag"><span class="token tag"><span class="token punctuation">&lt;</span>div</span> <span class="token attr-name">id</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>dialogAgent<span class="token punctuation">"</span></span> <span class="token punctuation">/&gt;</span></span>
</code></pre><p>After that, you need to configure your chat dialog by using a jQuery query to find your <code>&lt;div&gt;</code> element and call the <code>kendoChat</code> function from it, passing a configuration object. In the configuration object, you need to set its <code>sendMessage</code> property to a function to be called when your user enters a prompt. In that function, you&rsquo;ll call your agent and update the chat with your agent&rsquo;s response.</p><p>You only want to configure your chat once, so you should wrap that code in jQuery&rsquo;s ready function, like this:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span><span class="token keyword">function</span> <span class="token punctuation">(</span><span class="token punctuation">)</span> 
<span class="token punctuation">{</span>
  <span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#dialogAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoChat</span><span class="token punctuation">(</span><span class="token punctuation">{</span>
    sendMessage<span class="token punctuation">:</span> <span class="token punctuation">(</span>e<span class="token punctuation">)</span> <span class="token operator">=&gt;</span> <span class="token punctuation">{</span>
  <span class="token comment">//&hellip;function</span>
  <span class="token punctuation">}</span>
  <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>Rather than using a function in the <code>sendMessage</code> property, you can configure your chat component to <a target="_blank" href="https://demos.telerik.com/kendo-ui/chat/ai-integration">call an LLM directly</a> by setting the configuration object&rsquo;s <code>aiServiceUrl</code> property. Using a function in the <code>sendMessage</code> property, however, simplifies calling a custom agent.</p><p>Now you need to write the <code>sendMessage</code> function that will send a message to your agent. You function will be passed a parameter that has two useful properties:</p><ul><li><code>message</code>: You use this property both to retrieve the user&rsquo;s prompt and to manage the display of the user&rsquo;s prompt in the chat history pane</li><li><code>sender</code>: Use this to add the response from your agent to the chat history (your user&rsquo;s prompt will be added to the chat history automatically)</li></ul><p>In your <code>sendMessage</code> function, you need to set the <code>authorName</code> property on the parameter&rsquo;s <code>message</code> property. That controls the label displayed in the chat history window with your user&rsquo;s prompts. I picked <code>Me</code>:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#dialogAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoChat</span><span class="token punctuation">(</span><span class="token punctuation">{</span>
  sendMessage<span class="token punctuation">:</span> <span class="token punctuation">(</span>c<span class="token punctuation">)</span> <span class="token operator">=&gt;</span> <span class="token punctuation">{</span>
  c<span class="token punctuation">.</span>message<span class="token punctuation">.</span>authorName <span class="token operator">=</span> <span class="token string">"Me"</span><span class="token punctuation">;</span>
  <span class="token comment">//&hellip;more</span>
<span class="token punctuation">}</span>
</code></pre><p>You can retrieve the user&rsquo;s prompt from the <code>text</code> property on the object in the parameter&rsquo;s <code>message</code> property. You then pass that prompt to your agent (I used the JavaScript function I wrote to call my agent&rsquo;s web service) and catch your agent&rsquo;s response.</p><p>To add the agent&rsquo;s response to the chat history, you call the <code>postMessage</code> of the object in the <code>sender</code> property of the parameter passed to your function. You pass the <code>postMessage</code> property an object with three properties set:</p><ul><li><code>authorId</code>: A unique identifier to distinguish your user&rsquo;s prompt from your agent&rsquo;s responses</li><li><code>authorName</code>: The name that will be displayed with the agent&rsquo;s response in the chat history</li><li><code>text</code>: The response from your agent</li></ul><p>That code is also pretty short:</p><pre class=" language-javascript"><code class="prism  language-javascript">sendMessage<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token punctuation">(</span>e<span class="token punctuation">)</span> <span class="token operator">=&gt;</span> <span class="token punctuation">{</span>
  e<span class="token punctuation">.</span>message<span class="token punctuation">.</span>authorName <span class="token operator">=</span> <span class="token string">"Me"</span><span class="token punctuation">;</span>
  e<span class="token punctuation">.</span>sender<span class="token punctuation">.</span><span class="token function">postMessage</span><span class="token punctuation">(</span>
  <span class="token punctuation">{</span>
    authorId<span class="token punctuation">:</span> <span class="token string">"Agent"</span><span class="token punctuation">,</span>
    authorName<span class="token punctuation">:</span> <span class="token string">"Agent"</span><span class="token punctuation">,</span>
    text<span class="token punctuation">:</span> <span class="token keyword">await</span> <span class="token function">asyncInfoAgent</span><span class="token punctuation">(</span>e<span class="token punctuation">.</span>message<span class="token punctuation">.</span>text<span class="token punctuation">)</span><span class="token punctuation">}</span>
<span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>Your user can now interactively query your AI agent to extract whatever information you need.</p><p>There&rsquo;s more you can do here (creating a context-aware conversation by using state management to store message history and including that in your user&rsquo;s requests, for example). But, even with this simple implementation, you&rsquo;re ready to let your user have a conversation with your agent.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/intergating-ai-10---chat.gif?sfvrsn=c220c1bb_2" alt="An animated GIF showing a web page with an embedded chat window. The user enters “Summarize in 50 words” in the textbox at the bottom of the chat window and clicks the arrow at the right end of the textbox. The user’s prompt appears in the chat history pane, there is a pause of three or four sections, and then the AI agent’s response appears in the chat history pane, on the opposite side of the pane, in a different color, and labelled “Agent”" /></p><p>There are, at least, three scenarios when you&rsquo;ll want to integrate an AI-enabled component into your application&rsquo;s UI: when the interaction with your agent is the primary point of your application, when your AI agent is not the primary part by &ldquo;just another part&rdquo; of your application, and when your users will only occasionally need to access your agent (and these are just points on a continuum).</p><p>All three of the Progress Telerik and Kendo UI &ldquo;UI for AI&rdquo; components&mdash;Chat, AIPrompt and Inline AIPrompt&mdash;support those three scenarios (and all the points in between). Picking the right component, however, will simplify your code and let you get your application up and running faster.</p><aside><hr data-sf-ec-immutable="" /><div class="row"><div class="col-4 u-normal-full u-small-mb0"><h4 class="u-fs20 u-fw5 u-lh125 u-mb0">Get Access to All These Components and More</h4></div><div class="col-8"><p class="u-fs16 u-mb0">The free 30-day trial of <a target="_blank" href="https://www.telerik.com/devcraft">Telerik DevCraft</a> lets you really kick the tires for yourself. <a target="_blank" href="https://www.telerik.com/try/devcraft-ultimate">Try it today!</a></p></div></div></aside><img src="https://feeds.telerik.com/link/23068/17339809.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:bb2fa99e-0c29-407f-9eb9-4d2b43a9632a</id>
    <title type="text">Creating More Realistic Tests with In-Memory Databases in ASP.NET Core</title>
    <summary type="text">Testing ASP.NET Core APIs with in-memory SQLite and JustMock enables validation of real-world scenarios like pagination, keys and rules without a real database.</summary>
    <published>2026-05-06T17:20:57Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Assis Zang </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17335637/creating-more-realistic-tests-memory-databases-aspnet-core"/>
    <content type="text"><![CDATA[<p><span class="featured">Testing ASP.NET Core APIs with in-memory SQLite and JustMock enables validation of real-world scenarios like pagination, keys and rules without a real database.</span></p><p>Testing a web API involves much more than simply checking whether methods return or send data correctly. It requires validating real-world behaviors like pagination, unique keys, data persistence and other database rules. Anticipating and reproducing these scenarios can be challenging, especially when they depend on specific query behaviors or stored data.</p><p>To address this, the .NET ecosystem provides powerful tools for unit testing. In this post, we explore how in-memory SQLite serves as an effective solution for testing ASP.NET Core APIs, enabling developers to simulate common scenarios without deploying a real database. Additionally, we demonstrate how tools like Progress Telerik JustMock can streamline test implementation and help validate business rules efficiently.</p><h2 id="the-importance-of-testing-in-real-world-environments">The Importance of Testing in Real-World Environments</h2><p>A common example of functionality in web APIs is paginated search, which at first glance is quite simple. We receive parameters such as <code>page</code> and <code>pageSize</code>, apply a Skip and a Take, return the data and move on. In a controlled scenario, with few records, it&rsquo;s difficult for something to go wrong.</p><p>The problem begins when this code reaches production or even test environments, without having been validated with a real database. Consider a common scenario: in a paginated search, sorting is essential for it to function correctly. Without an explicit <code>OrderBy</code>, the database does not guarantee the order of the returned records.</p><p>In in-memory lists, the result usually appears stable, which completely masks the problem. Without tests running this query on a relational database, the error goes unnoticed, resulting in inconsistent pagination with duplicate records between pages, items &ldquo;disappearing&rdquo; when navigating between pages or different results for the same request. This type of bug is especially difficult to reproduce locally when not using a real database or even a simulation of one.</p><p>This is where the in-memory database plays a very important role. It allows the query to be executed exactly as it will be executed in production, revealing flaws that only appear when pagination, sorting and the database work together.</p><h2 id="understanding-in-memory-sqlite">Understanding In-Memory SQLite</h2><p>In-memory SQLite is a way to use the SQLite database entirely in memory. Instead of saving data to a <code>.db</code> file, SQLite creates the database only while the application or connection is active. When the connection is closed, all data is discarded.</p><p>In-memory SQLite is widely used in automated testing, especially in ASP.NET Core applications in conjunction with Entity Framework Core, as it has advanced features such as simulating a real database and executing real SQL (constraints, indexes, unique keys, FK and others).</p><h2 id="testing-with-sqlite-in-memory">Testing with SQLite in Memory</h2><p>Next, we&rsquo;ll look at some examples of unit tests in common web API scenarios where in-memory SQLite excels. But first, let&rsquo;s create the basic application and then add the tests.</p><p>You can access all the code discussed in this post in this GitHub repository: <a target="_blank" href="https://github.com/zangassis/memo-order">Memo Order source code</a>.</p><p>To create the application you can use the command below:</p><pre class=" language-bash"><code class="prism  language-bash">dotnet new web -o MemoOrder
</code></pre><p>To add the NuGet packages you can use the following commands:</p><pre class=" language-bash"><code class="prism  language-bash">dotnet add package Microsoft.EntityFrameworkCore --version 10.0.1
dotnet add package Microsoft.EntityFrameworkCore.Sqlite --version 10.0.1
</code></pre><p>Then, open the application and create the following classes:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">namespace</span> MemoOrder<span class="token punctuation">;</span>

<span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">Order</span>
<span class="token punctuation">{</span>
    <span class="token keyword">public</span> <span class="token keyword">int</span> Id <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
    <span class="token keyword">public</span> <span class="token keyword">string</span> Number <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>
    <span class="token keyword">public</span> <span class="token keyword">decimal</span> TotalAmount <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
    <span class="token keyword">public</span> DateTime CreatedAt <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
    <span class="token keyword">public</span> <span class="token keyword">bool</span> IsDeleted <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">namespace</span> MemoOrder<span class="token punctuation">;</span>

<span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">OrderSummaryDto</span>
<span class="token punctuation">{</span>
    <span class="token keyword">public</span> <span class="token keyword">string</span> Number <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
    <span class="token keyword">public</span> <span class="token keyword">decimal</span> Total <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">using</span> Microsoft<span class="token punctuation">.</span>EntityFrameworkCore<span class="token punctuation">;</span>

<span class="token keyword">namespace</span> MemoOrder<span class="token punctuation">;</span>

<span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">AppDbContext</span> <span class="token punctuation">:</span> DbContext
<span class="token punctuation">{</span>
    <span class="token keyword">public</span> <span class="token function">AppDbContext</span><span class="token punctuation">(</span>DbContextOptions<span class="token operator">&lt;</span>AppDbContext<span class="token operator">&gt;</span> options<span class="token punctuation">)</span>
        <span class="token punctuation">:</span> <span class="token keyword">base</span><span class="token punctuation">(</span>options<span class="token punctuation">)</span> <span class="token punctuation">{</span> <span class="token punctuation">}</span>

    <span class="token keyword">public</span> DbSet<span class="token operator">&lt;</span>Order<span class="token operator">&gt;</span> Orders <span class="token operator">=</span><span class="token operator">&gt;</span> <span class="token generic-method function">Set<span class="token punctuation">&lt;</span>Order<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">protected</span> <span class="token keyword">override</span> <span class="token keyword">void</span> <span class="token function">OnModelCreating</span><span class="token punctuation">(</span>ModelBuilder modelBuilder<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        modelBuilder<span class="token punctuation">.</span><span class="token generic-method function">Entity<span class="token punctuation">&lt;</span>Order<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span>entity <span class="token operator">=</span><span class="token operator">&gt;</span>
        <span class="token punctuation">{</span>
            entity<span class="token punctuation">.</span><span class="token function">HasKey</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>Id<span class="token punctuation">)</span><span class="token punctuation">;</span>
            entity<span class="token punctuation">.</span><span class="token function">Property</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>Number<span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">IsRequired</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            entity<span class="token punctuation">.</span><span class="token function">HasIndex</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>Number<span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">IsUnique</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
entity<span class="token punctuation">.</span><span class="token function">HasQueryFilter</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> <span class="token operator">!</span>o<span class="token punctuation">.</span>IsDeleted<span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">using</span> Microsoft<span class="token punctuation">.</span>EntityFrameworkCore<span class="token punctuation">;</span>

<span class="token keyword">namespace</span> MemoOrder<span class="token punctuation">;</span>

<span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">OrderRepository</span>
<span class="token punctuation">{</span>
    <span class="token keyword">private</span> <span class="token keyword">readonly</span> AppDbContext _context<span class="token punctuation">;</span>

    <span class="token keyword">public</span> <span class="token function">OrderRepository</span><span class="token punctuation">(</span>AppDbContext context<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        _context <span class="token operator">=</span> context<span class="token punctuation">;</span>
    <span class="token punctuation">}</span>

    <span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">AddAsync</span><span class="token punctuation">(</span>Order order<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        _context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span>order<span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token keyword">await</span> _context<span class="token punctuation">.</span><span class="token function">SaveChangesAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>

    <span class="token keyword">public</span> <span class="token keyword">async</span> Task<span class="token operator">&lt;</span>List<span class="token operator">&lt;</span>Order<span class="token operator">&gt;</span><span class="token operator">&gt;</span> <span class="token function">Pagination</span><span class="token punctuation">(</span>AppDbContext context<span class="token punctuation">,</span> <span class="token keyword">int</span> skip<span class="token punctuation">,</span> <span class="token keyword">int</span> take<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">return</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Orders
                    <span class="token punctuation">.</span><span class="token function">OrderBy</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>Id<span class="token punctuation">)</span>
                    <span class="token punctuation">.</span><span class="token function">Skip</span><span class="token punctuation">(</span>skip<span class="token punctuation">)</span>
                    <span class="token punctuation">.</span><span class="token function">Take</span><span class="token punctuation">(</span>take<span class="token punctuation">)</span>
                    <span class="token punctuation">.</span><span class="token function">ToListAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><p>Now let&rsquo;s create a special factory class that will be used in the tests to create the in-memory database and keep the connection open while the tests are running. Create the following class in the application:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">namespace</span> MemoOrder<span class="token punctuation">;</span>

<span class="token keyword">using</span> Microsoft<span class="token punctuation">.</span>Data<span class="token punctuation">.</span>Sqlite<span class="token punctuation">;</span>
<span class="token keyword">using</span> Microsoft<span class="token punctuation">.</span>EntityFrameworkCore<span class="token punctuation">;</span>

<span class="token keyword">public</span> <span class="token keyword">static</span> <span class="token keyword">class</span> <span class="token class-name">SqliteInMemoryFactory</span>
<span class="token punctuation">{</span>
    <span class="token keyword">public</span> <span class="token keyword">static</span> AppDbContext <span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">var</span> connection <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">SqliteConnection</span><span class="token punctuation">(</span><span class="token string">"DataSource=:memory:"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        connection<span class="token punctuation">.</span><span class="token function">Open</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

        <span class="token keyword">var</span> options <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">DbContextOptionsBuilder</span><span class="token operator">&lt;</span>AppDbContext<span class="token operator">&gt;</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
            <span class="token punctuation">.</span><span class="token function">UseSqlite</span><span class="token punctuation">(</span>connection<span class="token punctuation">)</span>
            <span class="token punctuation">.</span>Options<span class="token punctuation">;</span>

        <span class="token keyword">var</span> context <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">AppDbContext</span><span class="token punctuation">(</span>options<span class="token punctuation">)</span><span class="token punctuation">;</span>
        context<span class="token punctuation">.</span>Database<span class="token punctuation">.</span><span class="token function">EnsureCreated</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

        <span class="token keyword">return</span> context<span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><p>Note that to tell SQLite to use an in-memory database, we use <code>DataSource=:memory:</code> in the connection string.</p><h3 id="creating-the-test-project">Creating the Test Project</h3><p>All the code needed to implement the unit tests is ready, so let&rsquo;s create the test project and download the NuGet packages for it. To do this, you can use the following commands, simply run them in a terminal in the application&rsquo;s root directory:</p><pre class=" language-bash"><code class="prism  language-bash">dotnet new xunit -n MemoOrder.Tests
<span class="token function">cd</span> MemoOrder.Tests
dotnet add package Microsoft.NET.Test.Sdk --version 18.0.1
dotnet add package xunit --version 2.9.3
dotnet add package xunit.runner.visualstudio --version 3.1.5
dotnet add package coverlet.collector --version 6.0.4
dotnet add reference <span class="token punctuation">..</span>/MemoOrder/MemoOrder.csproj
</code></pre><p>Next, inside the project MemoOrder.Tests, create a new class called OrderRepositoryTests and let&rsquo;s add tests to it.</p><h3 id="testing-persistence">Testing Persistence</h3><p>The first test will be used to validate persistence&mdash;that is, to insert data into the database (which in this case will be the in-memory database). To do this, simply add the following test method to the <code>OrderRepositoryTests</code> class:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
<span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">AddAsync_ShouldPersistOrder</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    <span class="token comment">// Arrange</span>
    <span class="token keyword">using</span> <span class="token keyword">var</span> context <span class="token operator">=</span> SqliteInMemoryFactory<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token keyword">var</span> repository <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">OrderRepository</span><span class="token punctuation">(</span>context<span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">var</span> order <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Order</span>
    <span class="token punctuation">{</span>
        Number <span class="token operator">=</span> <span class="token string">"ORD-2026-0001"</span><span class="token punctuation">,</span>
        TotalAmount <span class="token operator">=</span> 200m<span class="token punctuation">,</span>
        CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow
    <span class="token punctuation">}</span><span class="token punctuation">;</span>

    <span class="token comment">// Act</span>
    <span class="token keyword">await</span> repository<span class="token punctuation">.</span><span class="token function">AddAsync</span><span class="token punctuation">(</span>order<span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token comment">// Assert</span>
    <span class="token keyword">var</span> savedOrder <span class="token operator">=</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">FirstAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    Assert<span class="token punctuation">.</span><span class="token function">Equal</span><span class="token punctuation">(</span><span class="token string">"ORD-2026-0001"</span><span class="token punctuation">,</span> savedOrder<span class="token punctuation">.</span>Number<span class="token punctuation">)</span><span class="token punctuation">;</span>
    Assert<span class="token punctuation">.</span><span class="token function">Equal</span><span class="token punctuation">(</span>200m<span class="token punctuation">,</span> savedOrder<span class="token punctuation">.</span>TotalAmount<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>Note that we use <code>var context = SqliteInMemoryFactory.Create();</code> to create and represent the database in memory. It works exactly like the EF Core context that maps database tables to class entities.</p><h3 id="testing-constraint-unique">Testing Constraint UNIQUE</h3><p>Another common mistake is allowing duplicate records to reach the production environment, which in many cases can have catastrophic impacts. With in-memory testing, we can anticipate problems like this. Simply create a test that verifies inserting a duplicate record will generate an exception. In this case, we could do the following:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
<span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">Should_Throw_When_Duplicated_Order_Number</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    <span class="token keyword">using</span> <span class="token keyword">var</span> context <span class="token operator">=</span> SqliteInMemoryFactory<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Order</span>
    <span class="token punctuation">{</span>
        Number <span class="token operator">=</span> <span class="token string">"ORD-001"</span><span class="token punctuation">,</span>
        TotalAmount <span class="token operator">=</span> <span class="token number">100</span><span class="token punctuation">,</span>
        CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow
    <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">await</span> context<span class="token punctuation">.</span><span class="token function">SaveChangesAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Order</span>
    <span class="token punctuation">{</span>
        Number <span class="token operator">=</span> <span class="token string">"ORD-001"</span><span class="token punctuation">,</span>
        TotalAmount <span class="token operator">=</span> <span class="token number">200</span><span class="token punctuation">,</span>
        CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow
    <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">await</span> Assert<span class="token punctuation">.</span><span class="token generic-method function">ThrowsAsync<span class="token punctuation">&lt;</span>DbUpdateException<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token operator">=</span><span class="token operator">&gt;</span> context<span class="token punctuation">.</span><span class="token function">SaveChangesAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>In this test, we created an instance of the database in memory, added an item to the table and saved it.</p><p>Then, we tried to add the same item, which generates an exception because, in the dbContext configuration, we declared the Number property of the Order entity as Unique: <code>entity.HasIndex(o =&gt; o.Number).IsUnique();</code>.</p><p>Thus, we have a real-world scenario, demonstrating that duplicate records will not reach the production environment, as the unit test is able to reproduce exactly the same result.</p><h3 id="testing-pagination">Testing Pagination</h3><p>To test pagination using an in-memory database, we could do the following:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
<span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">Should_Return_Paginated_Orders</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    <span class="token keyword">using</span> <span class="token keyword">var</span> context <span class="token operator">=</span> SqliteInMemoryFactory<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token keyword">var</span> repository <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">OrderRepository</span><span class="token punctuation">(</span>context<span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">for</span> <span class="token punctuation">(</span><span class="token keyword">int</span> i <span class="token operator">=</span> <span class="token number">1</span><span class="token punctuation">;</span> i <span class="token operator">&lt;=</span> <span class="token number">10</span><span class="token punctuation">;</span> i<span class="token operator">++</span><span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Order</span>
        <span class="token punctuation">{</span>
            Number <span class="token operator">=</span> $<span class="token string">"ORD-{i}"</span><span class="token punctuation">,</span>
            TotalAmount <span class="token operator">=</span> i <span class="token operator">*</span> <span class="token number">10</span><span class="token punctuation">,</span>
            CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow
        <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>

    <span class="token keyword">await</span> context<span class="token punctuation">.</span><span class="token function">SaveChangesAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    List<span class="token operator">&lt;</span>Order<span class="token operator">&gt;</span> page <span class="token operator">=</span> <span class="token keyword">await</span> repository<span class="token punctuation">.</span><span class="token function">Pagination</span><span class="token punctuation">(</span>context<span class="token punctuation">,</span> <span class="token number">5</span><span class="token punctuation">,</span> <span class="token number">5</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    Assert<span class="token punctuation">.</span><span class="token function">Equal</span><span class="token punctuation">(</span><span class="token number">5</span><span class="token punctuation">,</span> page<span class="token punctuation">.</span>Count<span class="token punctuation">)</span><span class="token punctuation">;</span>
    Assert<span class="token punctuation">.</span><span class="token function">Equal</span><span class="token punctuation">(</span><span class="token string">"ORD-6"</span><span class="token punctuation">,</span> page<span class="token punctuation">.</span><span class="token function">First</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span>Number<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>Note that here we create 10 items and insert them into the in-memory database. Then, we use the <code>Pagination(context, 5, 5)</code> method to perform the pagination and finally verify if the expected quantity and item are correct.</p><p>An in-memory database wouldn&rsquo;t be mandatory to test pagination. This could be done using only regular in-memory lists. However, in this way, we can reproduce the same production scenario.</p><h3 id="testing-soft-delete">Testing Soft Delete</h3><p>Soft-delete is a technique where data is not physically removed from the database, but rather marked as inactive through a flag, such as an <code>isDeleted</code> or <code>deleted_at</code> column. This allows you to keep the entire transaction history in the database.</p><p>The problem is that in some cases soft delete can leak unwanted data into reports, new endpoints or even refactored queries. To prevent this from happening, we can use the in-memory database and simulate a search with and without soft-delete:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
 <span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">SoftDeleted_Orders_Should_Not_Appear_In_Default_Queries</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
 <span class="token punctuation">{</span>
     <span class="token keyword">using</span> <span class="token keyword">var</span> context <span class="token operator">=</span> SqliteInMemoryFactory<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

     context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">AddRange</span><span class="token punctuation">(</span>
         <span class="token keyword">new</span> <span class="token class-name">Order</span>
         <span class="token punctuation">{</span>
             Number <span class="token operator">=</span> <span class="token string">"ORD-001"</span><span class="token punctuation">,</span>
             TotalAmount <span class="token operator">=</span> <span class="token number">100</span><span class="token punctuation">,</span>
             CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow<span class="token punctuation">,</span>
             IsDeleted <span class="token operator">=</span> <span class="token keyword">false</span>
         <span class="token punctuation">}</span><span class="token punctuation">,</span>
         <span class="token keyword">new</span> <span class="token class-name">Order</span>
         <span class="token punctuation">{</span>
             Number <span class="token operator">=</span> <span class="token string">"ORD-002"</span><span class="token punctuation">,</span>
             TotalAmount <span class="token operator">=</span> <span class="token number">200</span><span class="token punctuation">,</span>
             CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow<span class="token punctuation">,</span>
             IsDeleted <span class="token operator">=</span> <span class="token keyword">true</span>
         <span class="token punctuation">}</span>
     <span class="token punctuation">)</span><span class="token punctuation">;</span>

     <span class="token keyword">await</span> context<span class="token punctuation">.</span><span class="token function">SaveChangesAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

     <span class="token keyword">var</span> orders <span class="token operator">=</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">ToListAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

     Assert<span class="token punctuation">.</span><span class="token function">Single</span><span class="token punctuation">(</span>orders<span class="token punctuation">)</span><span class="token punctuation">;</span>
     Assert<span class="token punctuation">.</span><span class="token function">Equal</span><span class="token punctuation">(</span><span class="token string">"ORD-001"</span><span class="token punctuation">,</span> orders<span class="token punctuation">.</span><span class="token function">First</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span>Number<span class="token punctuation">)</span><span class="token punctuation">;</span>
 <span class="token punctuation">}</span>
</code></pre><p>In this test, the list returns only one item because the second one is marked as deleted. This happens because we declared the query filter <code>entity.HasQueryFilter(o =&gt; !o.IsDeleted);</code> when the database is created. By using an in-memory database, we can verify this mechanism works.</p><p>It&rsquo;s also possible to ignore the query filter and still verify it works:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
<span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">Admin_Query_Should_See_SoftDeleted_Orders</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    <span class="token keyword">using</span> <span class="token keyword">var</span> context <span class="token operator">=</span> SqliteInMemoryFactory<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">AddRange</span><span class="token punctuation">(</span>
        <span class="token keyword">new</span> <span class="token class-name">Order</span>
        <span class="token punctuation">{</span>
            Number <span class="token operator">=</span> <span class="token string">"ORD-001"</span><span class="token punctuation">,</span>
            TotalAmount <span class="token operator">=</span> <span class="token number">100</span><span class="token punctuation">,</span>
            CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow<span class="token punctuation">,</span>
            IsDeleted <span class="token operator">=</span> <span class="token keyword">false</span>
        <span class="token punctuation">}</span><span class="token punctuation">,</span>
        <span class="token keyword">new</span> <span class="token class-name">Order</span>
        <span class="token punctuation">{</span>
            Number <span class="token operator">=</span> <span class="token string">"ORD-002"</span><span class="token punctuation">,</span>
            TotalAmount <span class="token operator">=</span> <span class="token number">200</span><span class="token punctuation">,</span>
            CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow<span class="token punctuation">,</span>
            IsDeleted <span class="token operator">=</span> <span class="token keyword">true</span>
        <span class="token punctuation">}</span>
    <span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">await</span> context<span class="token punctuation">.</span><span class="token function">SaveChangesAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">var</span> orders <span class="token operator">=</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">IgnoreQueryFilters</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">ToListAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    Assert<span class="token punctuation">.</span><span class="token function">Equal</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span> orders<span class="token punctuation">.</span>Count<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><h3 id="testing-rollback">Testing Rollback</h3><p>When performing multiple operations, we run the risk of something failing during the process and the data becoming inconsistent. To keep this from happening, we can use the in-memory database to test if the rollback operation solves this problem.</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
<span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">Transaction_Should_Rollback_When_Error_Occurs</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    <span class="token keyword">using</span> <span class="token keyword">var</span> context <span class="token operator">=</span> SqliteInMemoryFactory<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">using</span> <span class="token keyword">var</span> transaction <span class="token operator">=</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Database<span class="token punctuation">.</span><span class="token function">BeginTransactionAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Order</span>
    <span class="token punctuation">{</span>
        Number <span class="token operator">=</span> <span class="token string">"ORD-NMBR-1"</span><span class="token punctuation">,</span>
        TotalAmount <span class="token operator">=</span> <span class="token number">100</span><span class="token punctuation">,</span>
        CreatedAt <span class="token operator">=</span> DateTime<span class="token punctuation">.</span>UtcNow
    <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">await</span> context<span class="token punctuation">.</span><span class="token function">SaveChangesAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">await</span> transaction<span class="token punctuation">.</span><span class="token function">RollbackAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">var</span> count <span class="token operator">=</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Orders<span class="token punctuation">.</span><span class="token function">CountAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    Assert<span class="token punctuation">.</span><span class="token function">Equal</span><span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">,</span> count<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>In this test, we added an item to the order list, saved it and then performed a rollback. Finally, we verified that the list was empty, checking that the operation was undone.</p><h3 id="testing-query-refactoring">Testing Query Refactoring</h3><p>Refactoring queries is often necessary, whether to improve performance or simply to make the code cleaner. The problem is that this can break queries that previously worked.</p><p>To see that both the old and new queries have the same result, we can use an in-memory database as demonstrated in the example below:</p><pre class=" language-csharp"><code class="prism  language-csharp">   <span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
    <span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">Refactored_Query_Should_Return_Same_Result</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">using</span> <span class="token keyword">var</span> context <span class="token operator">=</span> SqliteInMemoryFactory<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

        <span class="token keyword">var</span> oldResult <span class="token operator">=</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Orders
            <span class="token punctuation">.</span><span class="token function">Where</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>TotalAmount <span class="token operator">&gt;</span> <span class="token number">100</span><span class="token punctuation">)</span>
            <span class="token punctuation">.</span><span class="token function">Select</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>Id<span class="token punctuation">)</span>
            <span class="token punctuation">.</span><span class="token function">ToListAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

        <span class="token keyword">var</span> newResult <span class="token operator">=</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Orders
            <span class="token punctuation">.</span><span class="token function">Select</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> <span class="token keyword">new</span> <span class="token punctuation">{</span> o<span class="token punctuation">.</span>Id<span class="token punctuation">,</span> o<span class="token punctuation">.</span>TotalAmount <span class="token punctuation">}</span><span class="token punctuation">)</span>
            <span class="token punctuation">.</span><span class="token function">Where</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>TotalAmount <span class="token operator">&gt;</span> <span class="token number">100</span><span class="token punctuation">)</span>
            <span class="token punctuation">.</span><span class="token function">Select</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>Id<span class="token punctuation">)</span>
            <span class="token punctuation">.</span><span class="token function">ToListAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

        Assert<span class="token punctuation">.</span><span class="token function">Equal</span><span class="token punctuation">(</span>oldResult<span class="token punctuation">,</span> newResult<span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
</code></pre><p>In this example, we verify that both queries have the same result, so even after refactoring, the old logic will continue to work.</p><h3 id="query-test-with-projection-to-dto">Query Test with Projection to DTO</h3><p>When using Data Transfer Objects (DTOs) for data transport, we are subject to errors that can silently break our queries. Again, with an in-memory database, we can simulate a query using a DTO.</p><pre class=" language-csharp"><code class="prism  language-csharp">   <span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
    <span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">Projection_To_Dto_Should_Work</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">using</span> <span class="token keyword">var</span> context <span class="token operator">=</span> SqliteInMemoryFactory<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

        <span class="token keyword">var</span> result <span class="token operator">=</span> <span class="token keyword">await</span> context<span class="token punctuation">.</span>Orders
            <span class="token punctuation">.</span><span class="token function">Select</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> <span class="token keyword">new</span> <span class="token class-name">OrderSummaryDto</span>
            <span class="token punctuation">{</span>
                Number <span class="token operator">=</span> o<span class="token punctuation">.</span>Number<span class="token punctuation">,</span>
                Total <span class="token operator">=</span> o<span class="token punctuation">.</span>TotalAmount
            <span class="token punctuation">}</span><span class="token punctuation">)</span>
            <span class="token punctuation">.</span><span class="token function">ToListAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

        Assert<span class="token punctuation">.</span><span class="token function">NotNull</span><span class="token punctuation">(</span>result<span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
</code></pre><p>Note that through this test, we can be sure that our DTOs will function correctly.</p><h2 id="not-all-tests-need-a-database">Not All Tests Need a Database</h2><p>Until now, we&rsquo;ve used in-memory SQLite to validate constraints (UNIQUE), global filters (Soft Delete), real pagination, GroupBy, Sum, transactions and rollback.</p><p>Tests like these depend on database behavior, but it&rsquo;s common to encounter scenarios where the database isn&rsquo;t present, and only business rules are involved. In this case, to facilitate our work and validate our tests, we can use tools like <a target="_blank" href="https://www.telerik.com/products/mocking.aspx">JustMock</a> and simulate a production-facing environment.</p><p>Next, we&rsquo;ll look at some examples of business rule tests where we can use JustMock to easily create mocks for our tests.</p><h3 id="verifying-the-repository-will-be-called">Verifying the Repository Will Be Called</h3><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
<span class="token keyword">public</span> <span class="token keyword">async</span> Task <span class="token function">CreateAsync_Should_Call_Repository_AddAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    <span class="token comment">// Arrange</span>
    <span class="token keyword">var</span> repository <span class="token operator">=</span> Mock<span class="token punctuation">.</span><span class="token generic-method function">Create<span class="token punctuation">&lt;</span>IOrderRepository<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">var</span> order <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Order</span>
    <span class="token punctuation">{</span>
        Id <span class="token operator">=</span> <span class="token number">1</span><span class="token punctuation">,</span>
        Number <span class="token operator">=</span> <span class="token string">"ORD-001"</span>
    <span class="token punctuation">}</span><span class="token punctuation">;</span>

    Mock<span class="token punctuation">.</span><span class="token function">Arrange</span><span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token operator">=</span><span class="token operator">&gt;</span> repository<span class="token punctuation">.</span><span class="token function">AddAsync</span><span class="token punctuation">(</span>order<span class="token punctuation">)</span><span class="token punctuation">)</span>
        <span class="token punctuation">.</span><span class="token function">Returns</span><span class="token punctuation">(</span>Task<span class="token punctuation">.</span>CompletedTask<span class="token punctuation">)</span>
        <span class="token punctuation">.</span><span class="token function">MustBeCalled</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">var</span> service <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">OrderService</span><span class="token punctuation">(</span>repository<span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token comment">// Act</span>
    <span class="token keyword">await</span> service<span class="token punctuation">.</span><span class="token function">CreateAsync</span><span class="token punctuation">(</span>order<span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token comment">// Assert</span>
    Mock<span class="token punctuation">.</span><span class="token function">Assert</span><span class="token punctuation">(</span>repository<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><h3 id="verifying-the-gethighvalueorders-method-returns-only-orders-above-the-minimum-value">Verifying the GetHighValueOrders Method Returns Only Orders Above the Minimum Value</h3><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
<span class="token keyword">public</span> <span class="token keyword">void</span> <span class="token function">GetHighValueOrders_Should_Return_Only_Orders_Above_MinValue</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    <span class="token comment">// Arrange</span>
    <span class="token keyword">var</span> repository <span class="token operator">=</span> Mock<span class="token punctuation">.</span><span class="token generic-method function">Create<span class="token punctuation">&lt;</span>IOrderRepository<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">var</span> orders <span class="token operator">=</span> <span class="token function">FakeOrders</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
        <span class="token punctuation">.</span><span class="token function">Where</span><span class="token punctuation">(</span>o <span class="token operator">=</span><span class="token operator">&gt;</span> o<span class="token punctuation">.</span>TotalAmount <span class="token operator">&gt;=</span> <span class="token number">150</span> <span class="token operator">&amp;&amp;</span> <span class="token operator">!</span>o<span class="token punctuation">.</span>IsDeleted<span class="token punctuation">)</span>
        <span class="token punctuation">.</span><span class="token function">ToList</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    Mock<span class="token punctuation">.</span><span class="token function">Arrange</span><span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token operator">=</span><span class="token operator">&gt;</span> repository<span class="token punctuation">.</span><span class="token function">GetHighValueOrders</span><span class="token punctuation">(</span><span class="token number">150</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
        <span class="token punctuation">.</span><span class="token function">Returns</span><span class="token punctuation">(</span>orders<span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token keyword">var</span> service <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">OrderService</span><span class="token punctuation">(</span>repository<span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token comment">// Act</span>
    <span class="token keyword">var</span> result <span class="token operator">=</span> service<span class="token punctuation">.</span><span class="token function">GetHighValueOrders</span><span class="token punctuation">(</span><span class="token number">150</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

    <span class="token comment">// Assert</span>
    Assert<span class="token punctuation">.</span><span class="token function">AreEqual</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">,</span> result<span class="token punctuation">.</span>Count<span class="token punctuation">)</span><span class="token punctuation">;</span>
    Assert<span class="token punctuation">.</span><span class="token function">IsTrue</span><span class="token punctuation">(</span>result<span class="token punctuation">.</span><span class="token function">First</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span>TotalAmount <span class="token operator">&gt;=</span> <span class="token number">150</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><h3 id="verifying-the-service-forwards-exactly-the-filter-received">Verifying the Service Forwards Exactly the Filter Received</h3><pre class=" language-csharp"><code class="prism  language-csharp">       <span class="token punctuation">[</span>Fact<span class="token punctuation">]</span>
        <span class="token keyword">public</span> <span class="token keyword">void</span> <span class="token function">GetHighValueOrders_Should_Call_Repository_With_Same_MinValue</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token comment">// Arrange</span>
            <span class="token keyword">var</span> repository <span class="token operator">=</span> Mock<span class="token punctuation">.</span><span class="token generic-method function">Create<span class="token punctuation">&lt;</span>IOrderRepository<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

            Mock<span class="token punctuation">.</span><span class="token function">Arrange</span><span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token operator">=</span><span class="token operator">&gt;</span> repository<span class="token punctuation">.</span><span class="token function">GetHighValueOrders</span><span class="token punctuation">(</span><span class="token number">500</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
                <span class="token punctuation">.</span><span class="token function">Returns</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">List</span><span class="token operator">&lt;</span>Order<span class="token operator">&gt;</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
                <span class="token punctuation">.</span><span class="token function">MustBeCalled</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

            <span class="token keyword">var</span> service <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">OrderService</span><span class="token punctuation">(</span>repository<span class="token punctuation">)</span><span class="token punctuation">;</span>

            <span class="token comment">// Act</span>
            service<span class="token punctuation">.</span><span class="token function">GetHighValueOrders</span><span class="token punctuation">(</span><span class="token number">500</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

            <span class="token comment">// Assert</span>
            Mock<span class="token punctuation">.</span><span class="token function">Assert</span><span class="token punctuation">(</span>repository<span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
</code></pre><p>If you run all the tests, you can verify that they all passed:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-04/all-tests-passed.png?sfvrsn=60e45a83_2" title="all tests passed" alt="All tests passed" /></p><h2 id="conclusion">Conclusion</h2><p>Testing web applications is common in software development, but these tests don&rsquo;t always guarantee that errors won&rsquo;t occur in the production environment. Using in-memory databases, such as in-memory SQLite, allows you to reproduce scenarios closer to reality.</p><p>In this post, we saw how this approach helps identify common errors, such as persistence, pagination and projection issues. Furthermore, we explored how JustMock can help save time when validating business rules. I hope the content covered here helps you further improve your applications, making them more reliable through even more realistic testing.</p><hr /><p><a href="https://www.telerik.com/try/justmock" target="_blank">Try JustMock</a> free for 30 days, or <a href="https://www.telerik.com/try/devcraft-ultimate" target="_blank">try out the whole Telerik DevCraft</a> suite for access to the ASP.NET Core component library and lots more (also a free 30-day trial).</p><img src="https://feeds.telerik.com/link/23068/17335637.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:2f875edd-30d6-4e50-a69a-3d5c40e28d42</id>
    <title type="text">Creating a Custom AI Agent with Telerik Tools 5: Creating an Interactive UI in JavaScript</title>
    <summary type="text">If you’re going to give your users access to an AI-enabled backend in JavaScript, you need to give them an AI-appropriate frontend.</summary>
    <published>2026-05-06T16:39:24Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Peter Vogel </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17335600/creating-custom-ai-agent-telerik-tools-5-creating-interactive-ui-javascript"/>
    <content type="text"><![CDATA[<p><span class="featured">If you&rsquo;re going to give your users access to an AI-enabled backend in JavaScript, you need to give them an AI-appropriate frontend.</span></p><p>Right now, using Progress Telerik and Kendo UI tools you can create your own custom AI agent. (I&rsquo;ve covered those tools in earlier posts, beginning with <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-1-configuring-llm-azure-ollama" target="_blank">configuring a Large Language Model (LLM) in Azure or Ollama</a>, <a href="https://www.telerik.com/blogs/loading-accessing-converting-office-pdf-documents-telerik-document-processing-libraries" target="_blank">loading content with Telerik Document Processing Library</a>, linking your <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-2-loading-accessing-agent-content" target="_blank">content to your LLM</a>&nbsp;and <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-3-summarizing-querying" target="_blank">summarizing/querying your content</a>. But that backend isn&rsquo;t much use without a frontend your users can interact with.</p><p>Your users have expectations around what the UI for an AI agent look like and how that UI should behave&mdash;expectations that are set by tools like OpenAI&rsquo;s <a target="_blank" href="https://chatgpt.com/">ChatGPT</a> and <a target="_blank" href="https://copilot.microsoft.com/">Microsoft&rsquo;s Copilot</a> clients. Specifically, your users are looking for an interactive flow that enables them to evolve (through a set of prompts) from some initial response to a response that meets their needs. The Progress&nbsp;<a target="_blank" href="https://www.telerik.com/design-system/docs/components/aiprompt/">AIPrompt</a> provides that UI as a single component.</p><p>This post is about how to create that UI with the <a target="_blank" href="https://demos.telerik.com/kendo-ui/aiprompt/index">JavaScript Kendo UI for jQuery version</a>.</p><blockquote><p>In an earlier post (<a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-4-crafting-interactive-blazor-ui" target="_blank">Creating a Custom AI Agent with Telerik Tools 4: Crafting an Interactive Blazor UI</a>), I walked through implementing a UI with the <a href="https://www.telerik.com/blazor-ui/ai-prompt" target="_blank">Blazor version of the AIPrompt component</a>. And, in addition to the JavaScript for Kendo UI and Blazor versions of the AIPrompt, there are also versions for <a target="_blank" href="https://www.telerik.com/products/aspnet-ajax/ai-prompt.aspx">ASP.NET Ajax</a>, <a target="_blank" href="https://www.telerik.com/products/winforms/aiprompt.aspx">WinForms</a>&nbsp;and <a target="_blank" href="https://www.telerik.com/maui-ui/aiprompt">MAUI</a>.</p></blockquote><h2 id="background-the-custom-agent-backend-as-a-web-service">Background: The Custom Agent Backend as a Web Service</h2><p>If you just want to know how to use AIPrompt (and aren&rsquo;t interested in the AI-enabled backend I&rsquo;ll be using), you can skip this whole section.</p><p>To implement a JavaScript frontend, I had to wrap my custom AI agent in a web service that could be called from my JavaScript code. My processor expects two parameters: the user&rsquo;s prompt, of course (which I pass as a parameter to the single method that my AI agent class exposes), but also a processing option that lets the user choose between two modes: asking questions or summarizing selected content (that&rsquo;s controlled through a property on the class that implements my AI agent). Fundamentally, that processing mode chooses between two Telerik AI connectors: <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/features/gen-ai-powered-document-insights/complete-context-question-processor">CompleteContextQuestionProcessor</a> or <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/features/gen-ai-powered-document-insights/summarization-processor">SummarizationProcessor</a>.</p><p>I decided that, since my prompt could be a relatively wordy string, I&rsquo;d pass those two parameters as a JSON document in the body of a request to my web service. So, as part of creating my web service I defined this Data Transfer Object (DTO) class to hold those two pieces of information:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">CustomAgentRequest</span>
<span class="token punctuation">{</span>
   <span class="token keyword">public</span> <span class="token keyword">string</span> Prompt <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>
   <span class="token keyword">public</span> <span class="token keyword">string</span> Mode <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>I then created a web service wrapper as an ASP.NET Core WebAPI project that instantiates my AI agent&rsquo;s class and accepts my DTO class as part of an <code>HttpPut</code> method. (Since I was passing data in the body of the request, I had to use either a PUT or a POST request. I flipped a coin and settled on PUT.) In that <code>HttpPut</code> method, my service sets the processor&rsquo;s mode property and calls the single method on my AI agent class, passing the prompt and returning the text generated by my selected mode.</p><p>My web service wrapper looked something like this:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">CustomAgentAPI</span> <span class="token punctuation">:</span> ControllerBase
<span class="token punctuation">{</span>
    CustomAgent<span class="token operator">?</span> proc<span class="token punctuation">;</span>

    <span class="token keyword">public</span> <span class="token function">CustomAgentAPI</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        proc <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
    
    <span class="token punctuation">[</span>HttpPut<span class="token punctuation">]</span>
    <span class="token keyword">public</span> <span class="token keyword">async</span> Task<span class="token operator">&lt;</span>IActionResult<span class="token operator">&gt;</span> <span class="token function">Put</span><span class="token punctuation">(</span>CustomAgentRequest req<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
       proc<span class="token punctuation">.</span>Mode <span class="token operator">=</span> req<span class="token punctuation">.</span>Mode<span class="token punctuation">;</span> 
       <span class="token keyword">return</span> <span class="token function">Ok</span><span class="token punctuation">(</span><span class="token keyword">await</span> proc<span class="token punctuation">.</span><span class="token function">ProcessRequest</span><span class="token punctuation">(</span>req<span class="token punctuation">.</span>Prompt<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><p>I then added this JavaScript function to my frontend&rsquo;s webpage that accepts a prompt and a mode option, and then uses JavaScript&rsquo;s Fetch API functionality to call my web service:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token keyword">const</span> putAgentPrompt <span class="token operator">=</span> <span class="token keyword">async</span> <span class="token punctuation">(</span>requestPrompt<span class="token punctuation">,</span> requestProcess<span class="token punctuation">)</span> <span class="token operator">=&gt;</span>
<span class="token punctuation">{</span>
   <span class="token keyword">const</span> resp <span class="token operator">=</span> <span class="token keyword">await</span> <span class="token function">fetch</span><span class="token punctuation">(</span>
               <span class="token string">"&lt;URL for my Web service&gt;"</span><span class="token punctuation">,</span>
               <span class="token punctuation">{</span>
                method<span class="token punctuation">:</span> <span class="token string">"PUT"</span><span class="token punctuation">,</span>
                headers<span class="token punctuation">:</span> 
                <span class="token punctuation">{</span>
                   <span class="token string">"Content-Type"</span><span class="token punctuation">:</span> <span class="token string">"application/json"</span>
                <span class="token punctuation">}</span><span class="token punctuation">,</span>
                body<span class="token punctuation">:</span> JSON<span class="token punctuation">.</span><span class="token function">stringify</span><span class="token punctuation">(</span>
                <span class="token punctuation">{</span>
                   Prompt<span class="token punctuation">:</span> requestPrompt<span class="token punctuation">,</span>
                   Mode<span class="token punctuation">:</span> requestProcess
                <span class="token punctuation">}</span>
   <span class="token punctuation">)</span> <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
   <span class="token keyword">return</span> <span class="token keyword">await</span> resp<span class="token punctuation">.</span><span class="token function">text</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>Since JavaScript&rsquo;s Fetch API is asynchronous, I had to use the <code>await</code> keyword when calling the <code>fetch</code> function and mark my <code>putAgentPrompt</code> function as <code>async</code>.</p><p>My JavaScript function extracts the <code>text</code> property of the response object returned from my web service and then returns that to the JavaScript application that called my function.</p><h2 id="processing-requests">Processing Requests</h2><p>Assuming you&rsquo;ve created a project with the necessary Progress <a target="_blank" href="https://www.telerik.com/kendo-jquery-ui/documentation/intro/first-steps">Kendo UI support</a>, the markup for using the AIPrompt component is very simple&mdash;a <code>div</code> element with its <code>id</code> attribute set to some name of your choice:</p><pre class=" language-html"><code class="prism  language-html"><span class="token tag"><span class="token tag"><span class="token punctuation">&lt;</span>div</span> <span class="token attr-name">id</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>customAgent<span class="token punctuation">"</span></span> <span class="token punctuation">/&gt;</span></span>
</code></pre><p>To load that <code>div</code> element with the Progress AIPrompt component, you use jQuery to find that element and then call the Kendo UI for jQuery <code>kendoAIPrompt</code> extension from the found element. The resulting UI looks like this, with a textbox for the user to enter their prompt and a button to trigger sending the prompt to my backend:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/aiprompt-javascript-1---basic-ui.png?sfvrsn=6bc63813_2" alt="The basic AI Prompt display showing a textbox with a “Generate” button underneath it. Above the textbox are two additional buttons: “Ask AI” (which is currently highlighted) and “Output”" /></p><p>To enable the UI to process your user&rsquo;s prompts, you must pass the <code>kendoAIPrompt</code> extension a single parameter, an object literal. To process the user prompts when the user clicks the Generate button, you must set that object literal&rsquo;s <code>promptRequest</code> property to a function that, in turn, accepts a single parameter.</p><p>That means that, initially, the code to process a user&rsquo;s prompt looks something like this:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoAIPrompt</span><span class="token punctuation">(</span>        
      <span class="token punctuation">{</span>
   promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>e<span class="token punctuation">)</span> 
   <span class="token punctuation">{</span>

         <span class="token punctuation">}</span>
     <span class="token punctuation">}</span>
<span class="token punctuation">)</span><span class="token punctuation">;</span>    
</code></pre><p>If you&rsquo;re tempted to write the function set in the <code>promptRequest</code> property as an arrow function, <em>don&rsquo;t</em> give into the temptation. Your function in the <code>promptRequest</code> property must accept the <code>this</code> reference set in the <code>kendoAIPrompt</code> function, which is only possible if you use a traditional JavaScript function.</p><p>The parameter passed to your <code>promptRequest</code> has two properties that you&rsquo;re interested in:</p><ul><li><code>prompt</code>: The text the user entered in the AIPrompt&rsquo;s prompt view</li><li><code>isRetry</code>: Set to <code>false</code> unless the user clicks the Retry button displayed when AIPrompt shows the result of your processing in AIPrompt&rsquo;s output view</li></ul><p>Within your <code>promptRequest</code> function, you need to call your custom AI agent (in my case, the web service that wraps my AI agent class). I used the <code>putAgentPrompt</code> function from earlier in this post which returns a single text result.</p><p>After that, you need to provide the information that the AIPrompt&rsquo;s output view requires and then switch to that output view. Building the output view consists of loading an object literal with four properties (all required):</p><ul><li><code>id</code>: A unique identifier</li><li><code>output</code>: The response from your backend</li><li><code>prompt</code>: The user&rsquo;s prompt</li><li><code>isRetry</code>: The <code>isRetry</code> setting</li></ul><p>Once you&rsquo;ve built that object, you just pass it to the <code>kendoAIPrompt</code>&rsquo;s <code>addPromptOutput</code> function to have your response added to <code>kendoAIPrompt</code>&rsquo;s output view.</p><p>Finally, to actually display the AIPrompt&rsquo;s output view, you call the <code>kendoAIPrompt</code>&rsquo;s <code>activeView</code> function, passing the name of the view you want (&ldquo;output&rdquo;, in this case).</p><p>Putting that all together, a typical version of the <code>promptRequest</code> function would look like this:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoAIPrompt</span><span class="token punctuation">(</span> 
    <span class="token punctuation">{</span>
        promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>e<span class="token punctuation">)</span> 
         <span class="token punctuation">{</span> 
             <span class="token keyword">this</span><span class="token punctuation">.</span><span class="token function">addPromptOutput</span><span class="token punctuation">(</span>
                         <span class="token punctuation">{</span>
                 id<span class="token punctuation">:</span> kendo<span class="token punctuation">.</span><span class="token function">guid</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
                output<span class="token punctuation">:</span> <span class="token keyword">await</span> <span class="token function">putAgentPrompt</span><span class="token punctuation">(</span>e<span class="token punctuation">.</span>prompt<span class="token punctuation">,</span> <span class="token string">"summarize"</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
                prompt<span class="token punctuation">:</span> e<span class="token punctuation">.</span>prompt<span class="token punctuation">,</span>
                 isRetry<span class="token punctuation">:</span> <span class="token boolean">false</span>
                        <span class="token punctuation">}</span>
             <span class="token punctuation">)</span><span class="token punctuation">;</span>
             <span class="token keyword">this</span><span class="token punctuation">.</span><span class="token function">activeView</span><span class="token punctuation">(</span><span class="token string">"output"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
         <span class="token punctuation">}</span>
   <span class="token punctuation">}</span>
<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>A typical response might look like this, showing the user&rsquo;s response and the output from my custom AI agent:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/aiprompt-javascript-2--initial-response.png?sfvrsn=30c75aed_2" alt="The AIPrompt’s output view. The output button is now highlighted and the textbox is gone, replaced with the text the user entered before clicking the Generate button. Below that is a large block of text with Markdown markup embedded in it." /></p><p>However, as you can see, the result isn&rsquo;t necessarily very pretty because, as responses get more interesting, my custom agent produces output that uses <a target="_blank" href="https://www.markdownguide.org/">Markdown</a> for formatting. However, AIPrompt&rsquo;s default output page just displays all that text &ldquo;as is.&rdquo;</p><h2 id="taking-control-of-the-output">Taking Control of the Output</h2><p>You can, however, replace AIPrompt&rsquo;s default output view with your own custom view and, in that custom, convert the output to HTML.</p><p>You do that by setting the <code>outputTemplate</code> property of the parameter passed to the <code>kendoAIPrompt</code> function to yet another function. That <code>outputTemplate</code> function will be passed a parameter that has a <code>content</code> property, which holds the response you put in the <code>output</code> property back in your <code>promptRequest</code> function.</p><p>To support a better display, I added the <code>markdown-it</code> JavaScript library to my page with this <code>script</code> tag and CDN URL:</p><pre class=" language-html"><code class="prism  language-html"><span class="token tag"><span class="token tag"><span class="token punctuation">&lt;</span>script</span> <span class="token attr-name">src</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>https://cdnjs.cloudflare.com/ajax/libs/markdown-it/13.0.1/markdown-it.min.js<span class="token punctuation">"</span></span> 
              <span class="token attr-name">integrity</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>sha512-SYfDUYPg5xspsG6OOpXU366G8SZsdHOhqk/icdrYJ2E/WKZxPxze7d2HD3AyXpT7U22PZ5y74xRpqZ6A2bJ+kQ==<span class="token punctuation">"</span></span> 
              <span class="token attr-name">crossorigin</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>anonymous<span class="token punctuation">"</span></span> 
              <span class="token attr-name">referrerpolicy</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>no-referrer<span class="token punctuation">"</span></span><span class="token punctuation">&gt;</span></span><span class="token script language-javascript"></span><span class="token tag"><span class="token tag"><span class="token punctuation">&lt;/</span>script</span><span class="token punctuation">&gt;</span></span>
</code></pre><p>In my custom output template, I could then use the library&rsquo;s <code>markdownit</code> function that returns an object with a <code>render</code> function that converts Markdown to HTML. All I had to do was pass the <code>content</code> property of the parameter passed to my <code>outputTemplate</code> to that <code>render</code> function.</p><p>This means that extending the <code>kendoAIPrompt</code> function with a custom function that converts my output to HTML looks like this:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoAIPrompt</span><span class="token punctuation">(</span>        <span class="token punctuation">{</span>
            promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>e<span class="token punctuation">)</span> 
            <span class="token punctuation">{</span> 
                &hellip;previous code&hellip;
            <span class="token punctuation">}</span><span class="token punctuation">,</span>

            outputTemplate<span class="token punctuation">:</span> output   <span class="token operator">=&gt;</span> <span class="token punctuation">{</span>
                    <span class="token keyword">return</span> <span class="token function">markdownit</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">render</span><span class="token punctuation">(</span>output<span class="token punctuation">.</span>content<span class="token punctuation">)</span><span class="token punctuation">;</span>
                <span class="token punctuation">}</span>
         <span class="token punctuation">}</span>
<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>The enhanced output looks like this:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/aiprompt-javascript-3--enhanced-response.png?sfvrsn=8815bc5e_2" alt="A repeat of the previous graphic but, this time, the solid block of text-with-markup has been replaced with formatted text including headings and bullet points" /></p><h2 id="allowing-the-user-to-customize-their-prompts">Allowing the User to Customize Their Prompts</h2><p>Your agent probably supports some customization options that your users will want to take advantage of (for example, my agent supports two modes: summarizing and querying). You have two options for letting your users customize how your backend responds to your users&rsquo; prompts:</p><ul><li>Set options on your backend. My custom agent, for example, operates in two modes, depending on which of the Telerik AI connectors my code invokes.</li><li>Tweak the prompts being sent to your backend in order to trigger specific behavior</li></ul><p>In AIPrompt, I can support the user selecting my backend&rsquo;s mode by having AIPrompt display a commands menu which I&rsquo;ll use to let the user choose which mode (summarize or query) they want. To trigger that commands menu, I need to add a commands view to the <code>kendoAIPrompt</code>&rsquo;s <code>views</code> collection and load that view with an array of the menu items to be displayed in the component&rsquo;s command menu.</p><p>However, if you add a custom view to AIPrompt&rsquo;s <code>views</code> then you have to add implementations for AIPrompt&rsquo;s existing, predefined prompt view and output view. You add those default views to the <code>views</code> property of the parameter object passed to <code>kendoAIPrompt</code>, like this:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoAIPrompt</span><span class="token punctuation">(</span>        <span class="token punctuation">{</span>
        promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>e<span class="token punctuation">)</span> 
        <span class="token punctuation">{</span> 
   &hellip;existing code&hellip;
        <span class="token punctuation">}</span><span class="token punctuation">,</span>
        views<span class="token punctuation">:</span> <span class="token punctuation">[</span> 
            <span class="token punctuation">{</span>
               type<span class="token punctuation">:</span> <span class="token string">'prompt'</span><span class="token punctuation">,</span>
            <span class="token punctuation">}</span><span class="token punctuation">,</span>
            <span class="token punctuation">{</span>
               type<span class="token punctuation">:</span> <span class="token string">'output'</span><span class="token punctuation">,</span>
            <span class="token punctuation">}</span>
        <span class="token punctuation">]</span>
<span class="token punctuation">}</span> 
</code></pre><p>To add a command menu, you tack another view definition on to the end of your new default views, setting its <code>type</code> property to &ldquo;commands&rdquo;. In addition, you set this view&rsquo;s <code>promptCommands</code> property to an array of objects with these properties:</p><ul><li><code>id</code>: A unique value within the array</li><li><code>text</code>: The text that will be displayed to the user in AIPrompt&rsquo;s commands menu</li><li><code>prompt</code>: Associated text (probably text you will send to your agent backend&mdash;optional)</li><li><code>icon</code>: An SVG graphic (you can draw from the Progress <a target="_blank" href="https://www.telerik.com/design-system/docs/foundation/iconography/icon-list/">store of icons</a>&mdash;also, optional)</li></ul><p>Here, I&rsquo;ve set up four options for the user to select from:</p><pre class=" language-javascript"><code class="prism  language-javascript">views<span class="token punctuation">:</span> <span class="token punctuation">[</span> 
    <span class="token punctuation">{</span>
       type<span class="token punctuation">:</span> <span class="token string">'prompt'</span><span class="token punctuation">,</span>
    <span class="token punctuation">}</span><span class="token punctuation">,</span>
    <span class="token punctuation">{</span>
       type<span class="token punctuation">:</span> <span class="token string">'output'</span><span class="token punctuation">,</span>
    <span class="token punctuation">}</span><span class="token punctuation">,</span>
    <span class="token punctuation">{</span>
       type<span class="token punctuation">:</span> <span class="token string">'commands'</span><span class="token punctuation">,</span> 
       promptCommands<span class="token punctuation">:</span> <span class="token punctuation">[</span>
           <span class="token punctuation">{</span> id<span class="token punctuation">:</span> <span class="token string">"Summarize"</span><span class="token punctuation">,</span> text<span class="token punctuation">:</span> <span class="token string">"Summarize"</span><span class="token punctuation">,</span> prompt<span class="token punctuation">:</span> <span class="token string">"in 100 words"</span><span class="token punctuation">,</span> 
        icon<span class="token punctuation">:</span> <span class="token string">"info-circle"</span> <span class="token punctuation">}</span><span class="token punctuation">,</span>
           <span class="token punctuation">{</span> id<span class="token punctuation">:</span> <span class="token string">"SummarizeTerse"</span><span class="token punctuation">,</span> text<span class="token punctuation">:</span> <span class="token string">"Summarize: Terse"</span><span class="token punctuation">,</span> prompt<span class="token punctuation">:</span> <span class="token string">"in 50 words, "</span><span class="token punctuation">,</span> 
             icon<span class="token punctuation">:</span> <span class="token string">"min-width"</span> <span class="token punctuation">}</span><span class="token punctuation">,</span>
           <span class="token punctuation">{</span> id<span class="token punctuation">:</span> <span class="token string">"SummarizeVerbose"</span><span class="token punctuation">,</span> text<span class="token punctuation">:</span> <span class="token string">"Summarize: Verbose"</span><span class="token punctuation">,</span> prompt<span class="token punctuation">:</span> <span class="token string">"in 200 words"</span><span class="token punctuation">,</span> 
        icon<span class="token punctuation">:</span> <span class="token string">"max-width"</span> <span class="token punctuation">}</span><span class="token punctuation">,</span>
           <span class="token punctuation">{</span> id<span class="token punctuation">:</span> <span class="token string">"Ask"</span><span class="token punctuation">,</span> text<span class="token punctuation">:</span> <span class="token string">"Ask a question"</span><span class="token punctuation">,</span> 
             icon<span class="token punctuation">:</span> <span class="token string">"question-circle"</span> <span class="token punctuation">}</span><span class="token punctuation">,</span>
        <span class="token punctuation">]</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">]</span><span class="token punctuation">,</span>
</code></pre><p>The result is that the AIPrompt gets a new overflow menu icon in its command bar, just to the right of the existing &ldquo;Ask AI&rdquo; and &ldquo;Output&rdquo; buttons. When your user clicks on the overflow menu icon, they get your list of commands:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/aiprompt-javascript-4--comands-menu.png?sfvrsn=229dd1f6_2" alt="The AIPrompt’s initial view a new builder/menu overflow button (three horizontal dot) has been added to the right of the existing Output button in the toolbar. That icon is highlighted and, instead of displaying a textbox and Generate button, the AIPrompt is displaying a list of menu choices, displaying the icon and text from the code in the post" /></p><p>To respond to the user clicking on one of the command menu options, you need to load a function into the <code>commandExecute</code> property in the object passed to the <code>kendoAIPrompt</code> function. That <code>commandExecute</code> function will be passed a parameter that has an <code>item</code> property holding the object from the <code>promptCommands</code> array that the user selected.</p><p>You can decide what to do in the <code>commandExecute</code> function. You could, for example, just save the user&rsquo;s choice and use it later when the user clicks AIPrompt&rsquo;s Generate button.</p><p>I&rsquo;ll go a little further: In my <code>commandExecute</code> method, I&rsquo;ll submit the command to my custom agent and display the results, leveraging the user&rsquo;s last prompt.</p><p>To support that, in my <code>promptRequest</code> function, I save the user&rsquo;s last prompt in a variable called, cleverly, <code>lastPrompt</code>. I also create a variable called mode to hold which mode (&ldquo;Ask&rdquo; or &ldquo;Summarize&rdquo;) the user wants to operate in.</p><p>My revised <code>promptRequest</code> function that saves the user&rsquo;s prompt and uses my new mode variable looks like this:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token keyword">let</span> lastPrompt <span class="token operator">=</span> <span class="token string">""</span><span class="token punctuation">;</span>
<span class="token keyword">let</span> mode <span class="token operator">=</span> <span class="token string">"Ask"</span><span class="token punctuation">;</span>
    
<span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoAIPrompt</span><span class="token punctuation">(</span>
    <span class="token punctuation">{</span>
        promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>e<span class="token punctuation">)</span> 
        <span class="token punctuation">{</span>         
            <span class="token keyword">this</span><span class="token punctuation">.</span><span class="token function">addPromptOutput</span><span class="token punctuation">(</span><span class="token punctuation">{</span>
                id<span class="token punctuation">:</span> kendo<span class="token punctuation">.</span><span class="token function">guid</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
                output<span class="token punctuation">:</span> <span class="token keyword">await</span> <span class="token function">putAgentPrompt</span><span class="token punctuation">(</span>e<span class="token punctuation">.</span>prompt<span class="token punctuation">,</span> mode<span class="token punctuation">)</span><span class="token punctuation">,</span>
                prompt<span class="token punctuation">:</span> e<span class="token punctuation">.</span>prompt<span class="token punctuation">,</span>
                isRetry<span class="token punctuation">:</span> e<span class="token punctuation">.</span>isRetry
        <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>  
        lastPrompt <span class="token operator">=</span> e<span class="token punctuation">.</span>prompt<span class="token punctuation">;</span>
        &hellip;  
</code></pre><p>Then, in my <code>commandExecute</code> function, I check which command the user picked from my commands menu. If the user selected the menu option that switches to &ldquo;Ask&rdquo; mode, I set my mode variable to &ldquo;Ask.&rdquo; If the user selected one of the summarization menu choices, I set the mode to &ldquo;Summarize&rdquo; and then modify the user&rsquo;s last prompt to include the <code>prompt</code> property from the selected menu choice.</p><p>Either way, I re-submit the user&rsquo;s last prompt, with the new settings, and display the result in AIPrompt&rsquo;s output view:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoAIPrompt</span><span class="token punctuation">(</span>
    <span class="token punctuation">{</span>
        promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>e<span class="token punctuation">)</span> 
        <span class="token punctuation">{</span> 
           &hellip;previous code&hellip;
        <span class="token punctuation">}</span><span class="token punctuation">,</span>
        promptCommands<span class="token punctuation">:</span> <span class="token punctuation">{</span>
&hellip;command prompt menu choices&hellip;
        <span class="token punctuation">}</span><span class="token punctuation">,</span>
        commandExecute<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>c<span class="token punctuation">)</span> 
       <span class="token punctuation">{</span>
            <span class="token keyword">let</span> newPrompt <span class="token operator">=</span> <span class="token string">""</span><span class="token punctuation">;</span>

            <span class="token keyword">if</span> <span class="token punctuation">(</span>c<span class="token punctuation">.</span>item<span class="token punctuation">.</span>id<span class="token punctuation">.</span><span class="token function">startsWith</span><span class="token punctuation">(</span><span class="token string">"Summarize"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                mode <span class="token operator">=</span> <span class="token string">"Summarize"</span><span class="token punctuation">;</span>
                newPrompt <span class="token operator">=</span> lastPrompt <span class="token operator">+</span> c<span class="token punctuation">.</span>item<span class="token punctuation">.</span>prompt<span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
            <span class="token keyword">else</span>
            <span class="token punctuation">{</span>
                mode <span class="token operator">=</span> c<span class="token punctuation">.</span>item<span class="token punctuation">.</span>id<span class="token punctuation">;</span>
                newPrompt <span class="token operator">=</span> lastPrompt<span class="token punctuation">;</span>
            <span class="token punctuation">}</span>                

            <span class="token keyword">this</span><span class="token punctuation">.</span><span class="token function">addPromptOutput</span><span class="token punctuation">(</span><span class="token punctuation">{</span>
                id<span class="token punctuation">:</span> kendo<span class="token punctuation">.</span><span class="token function">guid</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
                output<span class="token punctuation">:</span> <span class="token keyword">await</span> <span class="token function">putAgentPrompt</span><span class="token punctuation">(</span>newPrompt<span class="token punctuation">,</span> mode<span class="token punctuation">)</span><span class="token punctuation">,</span>
                prompt<span class="token punctuation">:</span> lastPrompt
             <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token keyword">this</span><span class="token punctuation">.</span><span class="token function">activeView</span><span class="token punctuation">(</span><span class="token string">"output"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span><span class="token punctuation">,</span>    
</code></pre><p>The result looks like this, with the result of executing the menu choice added to the output from the user&rsquo;s previous requests:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/aiprompt-javascript-5--commands-with-multiple-output.png?sfvrsn=71c263e3_2" alt="AIPrompt’s output view showing two results: At the top is a 200 word summary that results from executing the “Summarize” menu choice; below that is the output from an earlier prompt requesting the minimum code to execute " /></p><h2 id="providing-sample-prompts">Providing Sample Prompts</h2><p>One last thing: It&rsquo;s not unusual for an AI agent&rsquo;s UI to include sample prompts to help users see what they can do with your application. Progress AIPrompt will let you do that, too, just by adding the <code>promptSuggestions</code> property to the object passed to <code>kendoAIPrompt</code> and setting it to an array of strings. This example loads three suggested prompts to AIPrompt:</p><pre class=" language-javascript"><code class="prism  language-javascript"><span class="token function">$</span><span class="token punctuation">(</span><span class="token string">"#customAgent"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">kendoAIPrompt</span><span class="token punctuation">(</span>
    <span class="token punctuation">{</span>
        promptRequest<span class="token punctuation">:</span> <span class="token keyword">async</span> <span class="token keyword">function</span><span class="token punctuation">(</span>e<span class="token punctuation">)</span> 
        <span class="token punctuation">{</span> 
           &hellip;previous code&hellip;
        <span class="token punctuation">}</span><span class="token punctuation">,</span>
        promptSuggestions<span class="token punctuation">:</span> 
       <span class="token punctuation">[</span>
         <span class="token string">"Summarize, targeting project leads"</span><span class="token punctuation">,</span>             
        <span class="token string">"What are the key features"</span><span class="token punctuation">,</span>
         <span class="token string">"What are the critical steps"</span>
     <span class="token punctuation">]</span><span class="token punctuation">,</span>
     <span class="token punctuation">{</span>
</code></pre><p>The result looks like this:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/aiprompt-javascript-6--suggestions.png?sfvrsn=76c7a97_2" alt="The AIPrompt interface with the three suggested prompts defined in the sample code displayed in lozenge shaped buttons below the prompt textbox (and labeled Prompt Suggestion with an arrow that allows you to hide their display). The Generate button appears below the three suggestions" /></p><p>Now, when the user clicks on one of your suggested prompts, that prompt will be automatically copied into the prompt textbox where the user can modify the suggestion before clicking the Generate button. This can also simplify testing&mdash;instead of typing in a test prompt, you can just pick one of your suggestions.</p><p>Combining Telerik Document Processing Library and the library&rsquo;s AI Connectors lets you create your own custom AI Agent. And the AIPrompt, in any of its implementations, lets you create a front end that enables your users take advantage of your backend (and meets your users&rsquo; expectations). You&rsquo;re ready to give your users a whole new level of support.</p><hr /><p>Remember, you can get access to all of the Kendo UI and Telerik components in this series with a free 30-day trial of the <a target="_blank" href="https://www.telerik.com/devcraft">Telerik DevCraft</a> bundle.</p><p><a href="https://www.telerik.com/try/devcraft-ultimate" target="_blank" class="Btn">Try Now</a></p><img src="https://feeds.telerik.com/link/23068/17335600.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:2f40dbfd-768b-4958-af6a-1001a16c7243</id>
    <title type="text">Creating a Custom AI Agent with Telerik Tools 4: Crafting an Interactive Blazor UI</title>
    <summary type="text">If you’re creating an AI-enabled backend, your users expect an interface that supports working with an AI tool. The Telerik UI for Blazor AIPrompt wraps that all up into a single component.</summary>
    <published>2026-04-29T18:56:24Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Peter Vogel </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17335597/creating-custom-ai-agent-telerik-tools-4-crafting-interactive-blazor-ui"/>
    <content type="text"><![CDATA[<p><span class="featured">If you&rsquo;re creating an AI-enabled backend, your users expect an interface that supports working with an AI tool. The Telerik UI for Blazor AIPrompt wraps that all up into a single component.</span></p><p>If you&rsquo;re creating an AI-enabled application, you can, of course, create any frontend for that application that makes sense to your users. But that &ldquo;makes sense&rdquo; must take into account your user&rsquo;s expectations around the kind of user interface that an AI-enabled application should provide&mdash;expectations that are set by tools like OpenAI&rsquo;s <a target="_blank" href="https://chatgpt.com/">ChatGPT</a> client.</p><p>Typically, that means supporting an interactive flow that allows the user to evolve through a set of prompts to move from an initial response from your AI-enabled application to a response that better meets the user&rsquo;s needs. The Progress Telerik AIPrompt component creates that UI in a single component.</p><p>In previous posts, I walked through <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-1-configuring-llm-azure-ollama" target="_blank">configuring an LLM in Azure or Ollama</a>, <a href="https://www.telerik.com/blogs/loading-accessing-converting-office-pdf-documents-telerik-document-processing-libraries" target="_blank">creating content with Telerik Document Processing Library</a>, <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-2-loading-accessing-agent-content" target="_blank">tying that content to my LLM</a>&nbsp;and leveraging the <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-3-summarizing-querying" target="_blank">Telerik DPL AI connectors</a>.</p><p>For this post, I&rsquo;m going to create UI with Telerik <a target="_blank" href="https://www.telerik.com/blazor-ui/ai-prompt">AI Prompt for Blazor</a> to let users interact with my custom agent.</p><p>My next post will use the <a href="https://www.telerik.com/design-system/docs/components/aiprompt/" target="_blank">JavaScript for Kendo UI version</a>. And, while I won&rsquo;t be covering them, there are also versions of the AI Prompt component for <a target="_blank" href="https://www.telerik.com/products/aspnet-ajax/ai-prompt.aspx">ASP.NET AJAX</a>, <a target="_blank" href="https://www.telerik.com/products/winforms/aiprompt.aspx">WinForms</a> and <a target="_blank" href="https://www.telerik.com/maui-ui/aiprompt">.NET MAUI</a>).</p><h2 id="creating-the-initial-display">Creating the Initial Display</h2><p>To get started, you&rsquo;ll need to create a Telerik-enabled application (e.g., for <a target="_blank" href="https://www.telerik.com/blazor-ui/documentation/getting-started/web-app">Blazor</a>), adding the Telerik.UI.for.Blazor and Telerik.AI.SmartComponents.Extensions NuGet packages to your application (in addition to the AI and document processing packages I described in my previous posts).</p><p>With those in place, you can then add your AIPrompt to your user interface, which can be as simple as this:</p><pre class=" language-razor"><code class="prism  language-razor">&lt;TelerikAIPrompt OnPromptRequest="@HandlePromptRequest"&gt;
&lt;/TelerikAIPrompt&gt;
</code></pre><p>Your next step is to write the method in the <code>OnPromptRequest</code> that will be called whenever the user clicks the AIPrompt Generate button (I&rsquo;ll call this the &ldquo;prompt method&rdquo;).</p><p>Your prompt method will be passed an <code>AIPromptPromptRequestEventArgs</code> parameter whose Prompt property will contain whatever prompt the user has typed into the AIPrompt textbox.</p><p>All you have to do is call your custom agent (I&rsquo;ve assumed that&rsquo;s a class called <code>CustomAgent</code>), pass the user&rsquo;s prompt to whatever method it exposes (I&rsquo;ve assumed a method called <code>ProcessRequest</code>), and then update the prompt method parameter&rsquo;s <code>Output</code> property with the result of that processing.</p><p>That code could be as simple as this:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">private</span> <span class="token keyword">async</span> Task <span class="token function">HandlePromptRequest</span><span class="token punctuation">(</span>AIPromptPromptRequestEventArgs args<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
   <span class="token keyword">private</span> CustomAgent proc <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
   args<span class="token punctuation">.</span>Output <span class="token operator">=</span> <span class="token keyword">await</span> proc<span class="token punctuation">.</span><span class="token function">ProcessRequest</span><span class="token punctuation">(</span>args<span class="token punctuation">.</span>Prompt<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>And with that in place, your UI looks like this:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/ai-ui-2-combined.png?sfvrsn=379bc4fe_2" alt="Two successive screenshots: First, the AIPrompt showing a textbox with a prompt entered into it (“what code do I need to use scrolltoitem”); Second, AIPrompt’s output showing a block of unformatted code" /></p><p>My CustomAgent object&rsquo;s ProcessRequest method does three things:</p><ol><li>Accesses a Large Language Model (LLM) and creates a chat client to work with it</li><li>Loads some content using tools from Progress <a target="_blank" href="https://www.telerik.com/document-processing-libraries">Telerik Document Processing Libraries (DPL)</a> to create the agent&rsquo;s content</li><li>Passes the chat client and content to the Telerik SummarizationProcessor AI connector and returns the result</li></ol><p>That code looks like this (I&rsquo;ve covered it in more detail in my earlier posts):</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">public</span> <span class="token keyword">async</span> Task<span class="token operator">&lt;</span><span class="token keyword">string</span><span class="token operator">&gt;</span> <span class="token function">ProcessRequest</span><span class="token punctuation">(</span><span class="token keyword">string</span> prompt<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
      aiclt <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Uri</span><span class="token punctuation">(</span><span class="token string">"&lt;LLM deployment name&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
                             <span class="token keyword">new</span> <span class="token class-name">AzureKeyCredential</span><span class="token punctuation">(</span><span class="token string">"&lt;Access Key&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
      chatClt <span class="token operator">=</span> aiclt<span class="token punctuation">.</span><span class="token function">GetChatClient</span><span class="token punctuation">(</span><span class="token string">"&lt;LLM deployment name&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">AsIChatClient</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

     RadFlowDocument rdoc<span class="token punctuation">;</span>
     RtfFormatProvider rprov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
     <span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> System<span class="token punctuation">.</span>IO<span class="token punctuation">.</span>File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">"&lt;path to document&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
     <span class="token punctuation">{</span>
        rdoc <span class="token operator">=</span> rprov<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
     <span class="token punctuation">}</span>
     SummarizationProcessorSettings spOpts <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token punctuation">(</span><span class="token number">3500</span><span class="token punctuation">,</span> prompt<span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token keyword">using</span> <span class="token punctuation">(</span>SummarizationProcessor sp <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token punctuation">(</span>chatClt<span class="token punctuation">,</span> spOpts<span class="token punctuation">)</span><span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
       <span class="token keyword">return</span> <span class="token keyword">await</span> sp<span class="token punctuation">.</span><span class="token function">Summarize</span><span class="token punctuation">(</span>std<span class="token punctuation">)</span><span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
</code></pre><p>As the user modifies their prompt and generates new responses, AIPrompt automatically provides a history of those responses in its output view. The user can switch between entering a new prompt and reviewing previous responses by clicking on the Ask AI and Output icons at the top of AIPrompt:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/ai-ui-3-history.png?sfvrsn=d635e395_2" alt="AIPrompt’s Output window showing two successive prompts with the response to each prompt displayed underneath each prompt" /></p><h2 id="enhancing-the-response">Enhancing the Response</h2><p>The default UI for your AI processor&rsquo;s response is probably fine if your LLM is only returning plain text. If, however, your LLM is returning anything that requires formatting (e.g., a bulleted text or, as in my example, code), then you&rsquo;ll probably want to enhance your display to take advantage of any formatting in your processor&rsquo;s response.</p><p>That requires three steps: Add a custom view to the AIPrompt <code>AIPromptViews</code>, add some Razor markup to that view and convert the output of your LLM to HTML.</p><p>AIPrompt has two main views: <code>AIPromptPromptView</code> (where the user types in their prompts) and <code>AIOutputPromptView</code> where AIPrompt displays the history of the user&rsquo;s interactions. If you want to replace either one of those views, you have to replace both. To modify a view, you just put your own Razor markup inside a <code>ViewTemplate</code>inside the view you want to modify.</p><p>For example, to maintain the existing prompt view while customizing the output view, you&rsquo;d add this markup inside the <code>TelerikAIPrompt</code> component:</p><pre class=" language-razor"><code class="prism  language-razor">&lt;TelerikAIPrompt OnPromptRequest="@HandlePromptRequest"&gt;
   &lt;AIPromptViews&gt;

      &lt;AIPromptPromptView ButtonText="Ask AI" 
                                                        ButtonIcon="@SvgIcon.Sparkles" /&gt;

      &lt;AIPromptOutputView ButtonText=&rdquo;Output&rdquo;
                                                      ButtonIcon="@SvgIcon.Comment"&gt;
         &lt;ViewTemplate&gt;
    &hellip;new Razor markup
&lt;/ViewTemplate&gt;
      &lt;/AIPromptOutputView&gt;

   &lt;/AIPromptViews&gt; 
&lt;/TelerikAIPrompt&gt;
</code></pre><p>If all you want to do is display text in your output view, all you need to do is declare a <code>string</code> field in your code to hold your text and display that field in your template. To get an HTML-formatted display of your text, you&rsquo;ll need to either, in Blazor, cast the field to <code>MarkupString</code> or pass, in ASP.NET, pass the field to the <code>@Html.Raw</code> method.</p><p>My case study is in Blazor so my new output view looks like this:</p><pre class=" language-razor"><code class="prism  language-razor">&lt;AIPromptOutputView  ButtonText=&rdquo;Output&rdquo;
                                                   ButtonIcon="@SvgIcon.Comment"&gt;

   &lt;ViewTemplate&gt;
      @( (MarkupString) output )
   &lt;/ViewTemplate&gt;

&lt;/AIPromptOutputView&gt;
</code></pre><p>In Blazor, to get something that Razor&rsquo;s <code>MarkupString</code> would be happy with, I added the Markdlg NuGet package to my project and used its Markdown class&rsquo;s <code>ToHtml</code> method to convert my output to HTML. That means that my updated method for handling the user&rsquo;s prompts looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">string</span> output <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>

<span class="token keyword">private</span> <span class="token keyword">async</span> Task <span class="token function">HandlePromptRequest</span><span class="token punctuation">(</span>AIPromptPromptRequestEventArgs args<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
   output <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>
   output <span class="token operator">=</span> Markdown<span class="token punctuation">.</span><span class="token function">ToHtml</span><span class="token punctuation">(</span> <span class="token keyword">await</span> proc<span class="token punctuation">.</span><span class="token function">ProcessDocument</span><span class="token punctuation">(</span>prompt<span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>And the result is, in fact, easier for my users to read:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/ai-ui-4-with-formatting.png?sfvrsn=1032cb4f_2" alt="A well formatted response with bolded headings and “pretty printed” sample HTML in a code font with indented code blocks" /></p><h2 id="letting-the-user-customize-processing">Letting the User Customize Processing</h2><p>You can also give your user more control over your AI processing either by:</p><ul><li>Setting options on your processor</li><li>Modifying your users&rsquo; prompts before turning them over for processing</li></ul><p>AIPrompt commands collection lets you use both options.</p><h3 id="defining-commands">Defining Commands</h3><p>For example, in my AI processor, I can let the user:</p><ul><li>Choose between two of the Telerik AI connectors: <code>CompleteContextQuestionProcessor</code> to ask questions about my agent&rsquo;s content, or <code>SummarizationProcessor</code> to summarize my agent&rsquo;s content</li><li>When summarizing, specify how much content is returned: terse (under 20 words), normal (under 100 words) and verbose (no limit)</li></ul><p>The first step in letting the user customize your processing is to create a <code>List</code> of <code>AIPromptCommandDescriptor</code> objects in a property in your application. For any <code>AIPromptCommandDescriptor</code>, you can set up to five properties (they&rsquo;re all optional):</p><ul><li>Id: Uniquely identifies a command</li><li>Title: Displayed in AIPrompt UI</li><li>Prompt: Useful when modifying the user&rsquo;s prompt</li><li>Icon: Displayed in AIPrompt UI</li><li>Children: Subcommands</li></ul><p>In the following code, I&rsquo;ve created a property called <code>Commands</code> and loaded it with two command objects to allow the user to select between asking questions and summarizing content (I added the Telerik SvgIcons NuGet package to my application so that I could use its icons when defining my commands):</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">private</span> List<span class="token operator">&lt;</span>AIPromptCommandDescriptor<span class="token operator">&gt;</span> Commands <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> 
    <span class="token keyword">new</span> <span class="token class-name">List</span><span class="token operator">&lt;</span>AIPromptCommandDescriptor<span class="token operator">&gt;</span>
<span class="token punctuation">{</span>
   <span class="token keyword">new</span> <span class="token class-name">AIPromptCommandDescriptor</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span> 
                                         Id <span class="token operator">=</span> <span class="token string">"Ask"</span><span class="token punctuation">,</span> 
                                         Title <span class="token operator">=</span> <span class="token string">"Ask a question"</span><span class="token punctuation">,</span> 
                                          Icon <span class="token operator">=</span> SvgIcon<span class="token punctuation">.</span>ZoomIn <span class="token punctuation">}</span><span class="token punctuation">,</span>
   <span class="token keyword">new</span> <span class="token class-name">AIPromptCommandDescriptor</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span> 
                                          Id <span class="token operator">=</span> <span class="token string">"Summarize"</span><span class="token punctuation">,</span> 
                                          Title <span class="token operator">=</span> <span class="token string">"Summarize"</span><span class="token punctuation">,</span> 
                                          Icon <span class="token operator">=</span> SvgIcon<span class="token punctuation">.</span>FontShrink<span class="token punctuation">}</span>
<span class="token punctuation">}</span><span class="token punctuation">;</span>
</code></pre><p>To let the user select a command, you just need to set two properties on the <code>TelerikAIPrompt</code>:</p><ul><li><code>Commands</code> to the name of the property you created that holds your array of commands</li><li><code>OnCommandExecute</code> to the name of a method that will do any processing when a user selects a command (I&rsquo;ll call it the &ldquo;command method&rdquo;)</li></ul><p>The result will look something like this:</p><pre class=" language-razor"><code class="prism  language-razor">&lt;TelerikAIPrompt OnPromptRequest="@HandlePromptRequest"
                                     Commands="@Commands"
                                     OnCommandExecute="@HandleCommandExecute"&gt;
</code></pre><p>The default UI for AIPrompt provides an overflow menu icon that the user can click to pick one of your commands, so you may not need to do anything more to let users select from your commands.</p><p>However, if you&rsquo;ve customized the AIPrompt views then, to let the user select from your commands, you&rsquo;ll also need to add an <code>AIPromptCommandView</code>to the <code>AIPromptViews</code> list, like this one:</p><pre class=" language-razor"><code class="prism  language-razor">&lt;AIPromptViews&gt;
&lt;AIPromptCommandView ButtonIcon="@SvgIcon.MoreVertical" /&gt;
</code></pre><p>When the user does click on the AIPrompt overflow icon, they&rsquo;ll get a list of your commands:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/ai-ui-5-commands.png?sfvrsn=7eb30a90_2" alt="AIPrompt showing a vertical list of commands, displaying the commands’ title property: “Ask Questions”, “Summarize”" /></p><p>Now it&rsquo;s just a matter of doing the right thing for each command.</p><h3 id="setting-processor-options">Setting Processor Options</h3><p>When the user clicks on one of your commands, your command method will be called and be passed an <code>AIPromptCommandExecuteEventArgs</code> parameter. That parameter has a <code>Command</code> property that holds whichever command the user selected.</p><p>For my application, I can let the user choose between querying the document and summarizing the document just by setting my processor&rsquo;s <code>Process</code> property.</p><p>Cleverly, the two options that my <code>Process</code> property expects match the values I used in the <code>Id</code> properties of my two commands (it&rsquo;s like I planned it). As a result, my command method just looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">private</span> <span class="token keyword">async</span> <span class="token keyword">void</span> <span class="token function">HandleCommandExecute</span><span class="token punctuation">(</span>AIPromptCommandExecuteEventArgs args<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
   proc<span class="token punctuation">.</span>Process <span class="token operator">=</span> args<span class="token punctuation">.</span>Command<span class="token punctuation">.</span>Id<span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><h3 id="adding-subcommands">Adding Subcommands</h3><p>But I might also want to give the user who selects the &ldquo;summarize&rdquo; option the ability to select how big a summary they will get. I can incorporate that choice into my commands by setting the command objects&rsquo; <code>Children</code> property to a new list of <code>AIPromptCommandDescriptor</code> objects.</p><p>To implement that, I add three subcommands to my summarize command: Terse (less than 20 words), Normal (less than 100 words) and Verbose (no word count).</p><p>My code looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">private</span> List<span class="token operator">&lt;</span>AIPromptCommandDescriptor<span class="token operator">&gt;</span> PromptCommands <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> 
                                                  <span class="token keyword">new</span> <span class="token class-name">List</span><span class="token operator">&lt;</span>AIPromptCommandDescriptor<span class="token operator">&gt;</span>
<span class="token punctuation">{</span>
<span class="token keyword">new</span> <span class="token class-name">AIPromptCommandDescriptor</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span> 
                                 Id <span class="token operator">=</span> <span class="token string">"Ask"</span><span class="token punctuation">,</span> 
                                 Title <span class="token operator">=</span> <span class="token string">"Ask questions"</span><span class="token punctuation">,</span> 
                                 Icon <span class="token operator">=</span> SvgIcon<span class="token punctuation">.</span>ZoomIn <span class="token punctuation">}</span><span class="token punctuation">,</span>
<span class="token keyword">new</span> <span class="token class-name">AIPromptCommandDescriptor</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span> 
                                 Id <span class="token operator">=</span> <span class="token string">"Summarize"</span><span class="token punctuation">,</span> 
                                 Title <span class="token operator">=</span> <span class="token string">"Summarize"</span><span class="token punctuation">,</span> 
                                 Icon <span class="token operator">=</span> SvgIcon<span class="token punctuation">.</span>FontShrink<span class="token punctuation">,</span>
                  Children <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">List</span><span class="token operator">&lt;</span>AIPromptCommandDescriptor<span class="token operator">&gt;</span>
   <span class="token punctuation">{</span>
       <span class="token keyword">new</span> <span class="token class-name">AIPromptCommandDescriptor</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span> 
                                                          Id <span class="token operator">=</span> <span class="token string">"SummarizeTerse"</span><span class="token punctuation">,</span> 
                                                          Title <span class="token operator">=</span> <span class="token string">"Terse"</span><span class="token punctuation">,</span> 
                                                          Prompt<span class="token operator">=</span><span class="token string">" in less than 20 words"</span><span class="token punctuation">}</span><span class="token punctuation">,</span>
        <span class="token keyword">new</span> <span class="token class-name">AIPromptCommandDescriptor</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span> 
                                                          Id <span class="token operator">=</span> <span class="token string">"SummarizeNormal"</span><span class="token punctuation">,</span> 
                                                          Title <span class="token operator">=</span> <span class="token string">"Normal"</span><span class="token punctuation">,</span> 
                                                          Prompt<span class="token operator">=</span><span class="token string">" in less than 100 words"</span><span class="token punctuation">}</span><span class="token punctuation">,</span>
<span class="token keyword">new</span> <span class="token class-name">AIPromptCommandDescriptor</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span> 
                                                           Id <span class="token operator">=</span> <span class="token string">"SummarizeVerbose"</span><span class="token punctuation">,</span> 
                                                           Title <span class="token operator">=</span> <span class="token string">"Verbose"</span><span class="token punctuation">,</span> 
                                                           Prompt<span class="token operator">=</span><span class="token string">""</span> <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
<span class="token punctuation">}</span>
<span class="token punctuation">}</span><span class="token punctuation">;</span>
</code></pre><p>I&rsquo;ll handle these subcommands by modifying the user&rsquo;s prompts.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/ai-ui-6-subcommands.png?sfvrsn=97fc4f93_2" alt="The same command menu as before but, now, the Summarize choice is highlighted in red and three subcommands are displayed below it: Terse, Normal, and Verbose" /></p><h3 id="modifying-prompt">Modifying Prompt</h3><p>Not surprisingly, handling these subcommands means my command method gets more complicated. I still want to set the <code>Process</code> option on my processor object but I also want to:</p><ul><li>When the user selects one of the &ldquo;summarize&rdquo; subcommands, save the <code>Prompt</code> property on the command that specifies the word count for a summary. After saving that choice, I can add it to any subsequent prompts the user submits (I created a field <code>summarizeLimit</code> to hold the command&rsquo;s <code>Prompt</code> property)</li><li>Clear the <code>summarizeLimit</code> when the user selects the Ask option</li></ul><p>That new version of the method looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">private</span> <span class="token keyword">string</span> summarizeList <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>

<span class="token keyword">private</span> <span class="token keyword">async</span> <span class="token keyword">void</span> <span class="token function">HandleCommandExecute</span><span class="token punctuation">(</span>AIPromptCommandExecuteEventArgs args<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
   <span class="token keyword">if</span> <span class="token punctuation">(</span>args<span class="token punctuation">.</span>Command<span class="token punctuation">.</span>Id<span class="token punctuation">.</span><span class="token function">StartsWith</span><span class="token punctuation">(</span> <span class="token string">"Summarize"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
   <span class="token punctuation">{</span>
      proc<span class="token punctuation">.</span>Process <span class="token operator">=</span> <span class="token string">"Summarize"</span><span class="token punctuation">;</span>
      summarizeLimit <span class="token operator">=</span> args<span class="token punctuation">.</span>Command<span class="token punctuation">.</span>Prompt<span class="token punctuation">;</span>    
   <span class="token punctuation">}</span>
   <span class="token keyword">else</span>
   <span class="token punctuation">{</span>
      proc<span class="token punctuation">.</span>Process <span class="token operator">=</span> args<span class="token punctuation">.</span>Command<span class="token punctuation">.</span>Id<span class="token punctuation">;</span>
      summarizeLimit <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>   
   <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><p>I also need to update my prompt command to see if my <code>summarizeList</code> field has anything in it. If the field does, I&rsquo;ll add the field&rsquo;s text to whatever the user has entered as their prompt:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">private</span> <span class="token keyword">string</span> prevPrompt <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>
<span class="token keyword">private</span> <span class="token keyword">async</span> Task <span class="token function">HandlePromptRequest</span><span class="token punctuation">(</span>AIPromptPromptRequestEventArgs args<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
   <span class="token keyword">string</span> innertPrompt <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>
   <span class="token keyword">if</span> <span class="token punctuation">(</span><span class="token operator">!</span><span class="token keyword">string</span><span class="token punctuation">.</span><span class="token function">IsNullOrEmpty</span><span class="token punctuation">(</span>summarizeLimit<span class="token punctuation">)</span><span class="token punctuation">)</span>
   <span class="token punctuation">{</span>
      prevPrompt <span class="token operator">=</span> args<span class="token punctuation">.</span>Prompt<span class="token punctuation">;</span>
      innerPrompt <span class="token operator">+</span><span class="token operator">=</span> summarizeLimit <span class="token operator">+</span> <span class="token string">", "</span> <span class="token operator">+</span> args<span class="token punctuation">.</span>Prompt
   <span class="token punctuation">}</span>
   <span class="token keyword">else</span>
   <span class="token punctuation">{</span>
      innerPrompt <span class="token operator">=</span> args<span class="token punctuation">.</span>Prompt<span class="token punctuation">;</span>
   <span class="token punctuation">}</span>
   args<span class="token punctuation">.</span>Output <span class="token operator">=</span> Markdown<span class="token punctuation">.</span><span class="token function">ToHtml</span><span class="token punctuation">(</span><span class="token keyword">await</span> proc<span class="token punctuation">.</span><span class="token function">ProcessDocument</span><span class="token punctuation">(</span>innerPrompt<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>As you can see in this code, I&rsquo;m also hanging onto the user&rsquo;s initial prompt whenever they&rsquo;re summarizing content. I&rsquo;m doing this so that, in the next section, I can demonstrate how to add your own custom output views to the AIPrompt output history.</p><h3 id="displaying-custom-output">Displaying Custom Output</h3><p>AIPrompt also lets me create custom output from anywhere in my code and add that output to the AIPrompt default output view.</p><p>I can, in my command method, call my AI processor. However, by default, output created in my command method won&rsquo;t update the AIPrompt default output view. What I can do in my command view, however, is create some custom output and add that to the AIPrompt default output view.</p><p>That can be useful because, if a user selects one of my summarize subcommands, my user might reasonably expect to see their previous prompt re-executed with the new summarize subcommand applied to it.</p><p>To do that, I first need to declare a field to reference my AIPrompt:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">private</span> TelerikAIPrompt<span class="token operator">?</span> aiprompt <span class="token operator">=</span> <span class="token keyword">null</span><span class="token punctuation">;</span>
</code></pre><p>And then tie that field to my AIPrompt:</p><pre class=" language-razor"><code class="prism  language-razor">&lt;TelerikAIPrompt @ref="aiprompt"
                                     OnPromptRequest="@HandlePromptRequest"
                                     &hellip;
</code></pre><p>Now, in my command method, I can call my processor, pass it my user&rsquo;s previous prompt (which I saved in my prompt method), apply whatever command the user selected and catch the new result:</p><pre class=" language-csharp"><code class="prism  language-csharp">proc<span class="token punctuation">.</span>Process <span class="token operator">=</span> <span class="token string">"Summarize"</span><span class="token punctuation">;</span>
summarizeLimit <span class="token operator">=</span> args<span class="token punctuation">.</span>Command<span class="token punctuation">.</span>Prompt<span class="token punctuation">;</span>
<span class="token keyword">string</span> result <span class="token operator">=</span> <span class="token keyword">await</span> proc<span class="token punctuation">.</span><span class="token function">ProcessDocument</span><span class="token punctuation">(</span>summarizeLimit <span class="token operator">+</span> <span class="token string">", "</span> <span class="token operator">+</span> prevPrompt<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>With that new result in hand, I can use my reference to the <code>TelerikAIPrompt</code> component to call the AIPrompt <code>AddOutput</code> method, passing the parameters to generate a new AIPrompt output view.</p><p>The <code>AddOutput</code> method accepts up to six parameters, but the primary ones are:</p><ul><li><code>output</code>: The result of your processing</li><li><code>title</code>: The large text displayed above your result</li><li><code>subtitle</code>: Some smaller text displayed below the title</li><li><code>prompt</code>: The prompt used to generate the result</li></ul><p>After adding my custom output, I then also call the AIPrompt <code>Refresh</code> method to have AIPrompt update its output view with my new result.</p><p>Altogether, the code looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">aiprompt<span class="token punctuation">.</span><span class="token function">AddOutput</span><span class="token punctuation">(</span>
output<span class="token punctuation">:</span> result<span class="token punctuation">,</span>
title<span class="token punctuation">:</span> <span class="token string">"Summarize: "</span> <span class="token operator">+</span> args<span class="token punctuation">.</span>Command<span class="token punctuation">.</span>Prompt<span class="token punctuation">,</span>
subtitle<span class="token punctuation">:</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">,</span>
prompt<span class="token punctuation">:</span> prevPrompt<span class="token punctuation">,</span>
commandId<span class="token punctuation">:</span> <span class="token keyword">null</span><span class="token punctuation">,</span>
openOutputView<span class="token punctuation">:</span> <span class="token keyword">true</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
aiprompt<span class="token punctuation">.</span><span class="token function">Refresh</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/ai-ui-7-terse-and-verbose.png?sfvrsn=bf2acb15_2" alt="A screenshot of a history of output in AIPrompt. All of the items have the same prompt: “when can’t I use scrolltoitem.” The top output block is labelled Terse and consists of a single sentence less than 20 words long; the block below it is labelled Verbose and is a paragraph of less than 100 words" /></p><h2 id="providing-suggested-prompts">Providing Suggested Prompts</h2><p>One last thing: It&rsquo;s possible that your users may not realize the variety of prompts they can provide to your application. Alternatively, you might want to guide users <em>away</em> from entering some prompts by providing your users with some &ldquo;approved prompts.&rdquo; To support either of those goals, AIPrompt lets you provide a list of suggested prompts.</p><p>First, you need to create an array of strings with some suggested prompts:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">private</span> List<span class="token operator">&lt;</span><span class="token keyword">string</span><span class="token operator">&gt;</span> Suggestions <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> 
    <span class="token keyword">new</span> <span class="token class-name">List</span><span class="token operator">&lt;</span><span class="token keyword">string</span><span class="token operator">&gt;</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
   <span class="token punctuation">{</span>
      <span class="token string">"Summarize in under 100 words, targeting developers"</span><span class="token punctuation">,</span>
      <span class="token string">"Summarize in under 100 words, targeting project leads"</span><span class="token punctuation">,</span>
      <span class="token string">"What are the key features"</span><span class="token punctuation">,</span>
      <span class="token string">"What are the critical steps"</span>
<span class="token punctuation">}</span><span class="token punctuation">;</span>
</code></pre><p>To integrate that list of suggested prompts, you just need to set the <code>TelerikAIPrompt</code> component&rsquo;s <code>PromptSuggestions</code> property to the name of your array of strings:</p><pre class=" language-razor"><code class="prism  language-razor">&lt;TelerikAIPrompt @ref="aiprompt"
 OnPromptRequest="@HandlePromptRequest"
 PromptSuggestions="@Suggestions"
&hellip;
</code></pre><p>The result looks like this:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/ai-ui-8-suggestions.png?sfvrsn=14decfb2_2" alt="The AIPrompt from before but it’s bottom has been filled with a set of lozenge shaped buttons with the strings from the Suggestions array in the component (e.g. What are the key features, Summarize this document for…" /></p><p>The user can then click on any of these suggestions to add them to the AIPrompt textbox where the user can then edit or modify the suggestion before submitting it as their next prompt. This can also simplify testing&mdash;instead of typing in a test prompt, you can just pick one of your suggestions.</p><p>You now have all the tools you need to create an application that lets your users leverage your custom AI agent to provide a quick source of information from any content you might want to provide &hellip; in Blazor, at least.</p><p><a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-5-creating-interactive-ui-javascript" target="_blank">In my next post, I&rsquo;ll move my processor into a web service and access it from the JavaScript version of the AIPrompt component.</a></p><hr /><p>Remember, you can get access to all of the Kendo UI and Telerik components in this series with a free 30-day trial of the <a target="_blank" href="https://www.telerik.com/devcraft">Telerik DevCraft</a> bundle.</p><p><a href="https://www.telerik.com/try/devcraft-ultimate" target="_blank" class="Btn">Try Now</a></p><img src="https://feeds.telerik.com/link/23068/17335597.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:ef8e4643-5bc4-4e34-9174-357e1d25de81</id>
    <title type="text">Creating a Custom AI Agent with Telerik Tools 3: Summarizing and Querying</title>
    <summary type="text">Now we’ll add content to the LLM using AI processors from the Progress Telerik Document Processor Libraries to summarize and query our agent’s content.</summary>
    <published>2026-04-22T17:06:35Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Peter Vogel </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17323733/creating-custom-ai-agent-telerik-tools-3-summarizing-querying"/>
    <content type="text"><![CDATA[<p><span class="featured">Now we&rsquo;ll add content to the LLM using AI processors from the Progress Telerik Document Processor Libraries to summarize and query our agent&rsquo;s content.</span></p><p>In this series of posts, I&rsquo;ve been creating a custom AI Agent using Telerik tools. That&rsquo;s included <a target="_blank" href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-1-configuring-llm-azure-ollama">accessing an Azure Large Language Model</a> (LLM) and loading <a target="_blank" href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-2-loading-accessing-agent-content">my own content and creating a client to access the LLM</a>.</p><p>The last step is to pass my content to my LLM using one of the Progress Telerik AI processors (part of the <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/introduction">Document Processor Libraries</a>), which is what this post is about.</p><p>The <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/editing/gen-ai-powered-document-insights/overview">Telerik AI processors</a> support two scenarios for your users: summarizing your agent&rsquo;s content and querying your agent&rsquo;s content.</p><p>To summarize your content, you&rsquo;ll use the Telerik <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/editing/gen-ai-powered-document-insights/summarization-processor"><code>SummarizationProcess</code></a> processor. For querying content, on the other hand, you have a choice between two processors:</p><ul><li><a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/editing/gen-ai-powered-document-insights/complete-context-question-processor"><code>CompleteContextQuestionProcessor</code></a> which loads all of your content before querying it</li><li><a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/editing/gen-ai-powered-document-insights/partial-context-question-processor"><code>PartialContentQuestionProcessor</code></a> which loads just part of your content as a series of fragments&mdash;a good choice when your content is large and you don&rsquo;t want to allocate (i.e., &ldquo;pay for&rdquo;) enough tokens to load all of it at once</li></ul><p>A token, by the way, represents a word, part of a word or a punctuation mark. The sample document I&rsquo;ll be using to demonstrate the summarization process contains roughly 1,500 words (a relatively small document). So, when summarizing that document, I&rsquo;ll set my token count to 3,500 (I figured doubling the word count to include punctuation marks and adding a 33% buffer would work).</p><p>On the other hand, to demonstrate querying, I&rsquo;ll be loading three documents as my agent&rsquo;s content, totaling about 8,000 words. That&rsquo;s going to require either a larger token count or fragmenting my document.</p><h2 id="summarizing-documents">Summarizing Documents</h2><p>Before you can do any summarizing or querying, you&rsquo;ll need to add the Telerik.Documents.AIConnector NuGet package to your project. With that package added, to summarize your agent&rsquo;s content you&rsquo;ll use the Telerik <code>SummarizationProcessor</code> processor. Your first step is to create a settings object the model that defines the context window for the model by specifying:</p><ul><li>The maximum of number of tokens you&rsquo;re willing to have used in processing the document</li><li>Any text describing how you want to customize the summarization process (e.g., &ldquo;under 100 words,&rdquo; &ldquo;target project managers&rdquo;)</li></ul><p>Once you&rsquo;ve created the settings object, you create a <code>SummarizationProcessor</code> object, passing a chat client (discussed in my last post) and your settings object. Once you&rsquo;ve created the processor, you pass its <code>Summarize</code> method your content and catch the result as a string.</p><p>In the following code, I&rsquo;ve assumed that you&rsquo;ve used Telerik Document Processing Libraries to load a <code>SimpleTextDocument</code> into a variable called <code>std</code> (again, see my previous posts). The code then:</p><ol><li>Creates a chat client tied to an LLM deployed in Azure</li><li>Creates a settings object that tells the summarization processor to
        <ul><li>Accept up to 3,500 tokens</li><li>Asks the processor to summarize the document in less than 100 words</li></ul></li><li>Creates the <code>SummarizationProcessor</code> from the chat client and the settings object</li><li>Passes my content document to the <code>SummarizationProcessor</code>&rsquo;s <code>Summarize</code> method</li><li>Catches the result as a string</li></ol><p>And it&rsquo;s only four lines of code:</p><pre class=" language-csharp"><code class="prism  language-csharp">AzureOpenAIClient aiclt <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span>
                <span class="token keyword">new</span> <span class="token class-name">Uri</span><span class="token punctuation">(</span><span class="token string">"&lt;deployment URL&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
                <span class="token keyword">new</span> <span class="token class-name">AzureKeyCredential</span><span class="token punctuation">(</span><span class="token string">"&lt;access key&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
IChatClient chatClt <span class="token operator">=</span> aiclt<span class="token punctuation">.</span><span class="token function">GetChatClient</span><span class="token punctuation">(</span><span class="token string">"&lt;Deployment Name&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">AsIChatClient</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

SummarizationProcessorSettings spOpts <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token punctuation">(</span><span class="token number">3500</span><span class="token punctuation">,</span> <span class="token string">"Summarize in 100 words"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">using</span> <span class="token punctuation">(</span>SummarizationProcessor sp <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token punctuation">(</span>chatClt<span class="token punctuation">,</span> spOpts<span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
   <span class="token keyword">string</span> summary <span class="token operator">=</span> <span class="token keyword">await</span> sp<span class="token punctuation">.</span><span class="token function">Summarize</span><span class="token punctuation">(</span>std<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><h3 id="summarization-results">Summarization Results</h3><p>As an example of what you can expect, I fed my custom agent [a post I wrote on how to use the <code>scrollToItem</code>method]() in the Kendo Grid. You can compare the output to the post to decide how good a job the LLMs did.</p><p>For my first try, I used Azure&rsquo;s gpt-5.2-chat LLM and asked for a summary in 100 words or less. That gave me these 94 words (I&rsquo;ve stripped out the HTML formatting):</p><blockquote><p><code>This article explains how to ensure the right row is visible in a Kendo Grid without forcing users to scroll. It focuses on the `scrollToItem` method, which scrolls directly to a row based on a data item&rsquo;s unique ID. The method works in Angular, ASP.NET MVC, and jQuery grids, with alternatives for React and Blazor. The article walks through configuring an ASP.NET Core project, setting up the grid and data source, enabling scrolling, and invoking `scrollToItem` via JavaScript. It also covers handling invalid selections and loading rows not on the current page using callbacks.</code></p></blockquote><p>I tried the same content using the gpt-oss LLM running in Ollama and got these 114 words:</p><blockquote><p><code>This article explains Kendo Grid&rsquo;s `scrollToItem` method, which brings a specified row into view without manual scrolling. It works across Angular, ASP .NET MVC, and jQuery grids (React and Blazor can use DOM&rsquo;s `scrollIntoView`). The method requires the grid&rsquo;s data model to have a unique `id` field (e.g., `ProductID`) and virtual or endless scrolling enabled. The author demonstrates setting up an ASP .NET Core Razor Page, configuring the grid with a datasource, model, and columns, and creating a textbox/dropdown that triggers `MoveToItem`. The method accepts a callback for invalid IDs or to fetch non‑paged items by calling the callback&rsquo;s `success` with the row index. The result is a row positioned at the top of the grid.</code></p></blockquote><p>I also tried passing just &ldquo;summarize&rdquo; to both LLMs without specifying a word count. The gpt-5.2-chat LLM on Azure gave me back just under 300 words with a pretty good breakdown of the main points in the article. The same prompt with Ollama and gpt-oss gave me just over 400 words but also threw in some of the sample code.</p><p>Finally, I passed &ldquo;provide a title&rdquo; as my requested processing to both LLMs. From gpt-5.2-chat, I got back &ldquo;Using Kendo Grid&rsquo;s scrollToItem to Instantly Bring Data Into View&rdquo; and from gpt-oss, I got &ldquo;Kendo Grid&rsquo;s scrollToItem: A Practical Guide to Quick Row Navigation.&rdquo; I have to admit, I think both of those proposed titles are better than the one I used (feel free to disagree). Not surprisingly, given that I was using the Telerik summarization processor, both engines threw in a summary of the post along with their new title.</p><h2 id="complete-document-queries">Complete Document Queries</h2><p>If you want to let your user ask queries that require looking at your complete document, you can use the Telerik <code>CompleteContextQuestionProcessor</code> processor(which is also the easiest of the two query processors to use).</p><p>To query your agent&rsquo;s content, you just need to:</p><ol><li>Create a <code>CompleteContextProcessorSettings</code> object, passing a maximum token count</li><li>Create a new <code>CompleteContextQuestionProcessor</code> object, passing a chat client and the settings object</li><li>Pass your content and the user&rsquo;s question to the <code>CompleteContextQuestionProcessor</code> object&rsquo;s <code>AnswerQuestion</code> method</li><li>Catch the result as a string</li></ol><p>Typical code will look like this (I&rsquo;ve omitted the code to create the chat client because it&rsquo;s identical to my previous example). Note the larger token count:</p><pre class=" language-csharp"><code class="prism  language-csharp">CompleteContextProcessorSettings caOpts <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token number">9000</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">using</span> <span class="token punctuation">(</span>CompleteContextQuestionProcessor ca <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span>chatClient<span class="token punctuation">,</span> caOpts<span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
       <span class="token keyword">string</span> answer <span class="token operator">=</span> <span class="token keyword">await</span> ca<span class="token punctuation">.</span><span class="token function">AnswerQuestion</span><span class="token punctuation">(</span>sampleDocument<span class="token punctuation">,</span> prompt<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><h3 id="complete-query-results">Complete Query Results</h3><p>For this example, I loaded three of my posts on how to create asynchronous applications using Azure storage queues (starting with <a target="_blank" href="https://www.telerik.com/blogs/coding-azure-18-creating-securing-azure-storage-queues%22">this Coding Azure 18 post</a>. With that content loaded, I tried asking &ldquo;How do I create a storage queue?&rdquo; using the gpt-5.2-chat LLM and got back this result:</p><pre class=" language-text"><code class="prism  language-text">You create a storage queue in two main steps:
1. Create a storage account
     In the Azure Portal, go to Storage Accounts and select Create.
     Give the storage account a URL friendly name (lowercase, no special characters).
     Choose settings appropriate for queues (Primary service set to Other).
     Complete the wizard and create the storage account.

2. Create the queue inside the storage account
         Open the storage account you just created.
          From the left menu, select Data Storage, then Queues.
          Click + Queue.
           Enter a lowercase, UL friendly queue name.
           Click OK to create the queue.

At that point, the storage queue exists and is ready to be secured and used by applications.
</code></pre><p>Which isn&rsquo;t, I thought, a bad response (though I question the need for the last sentence). I then tried asking &ldquo;What&rsquo;s the minimum code required&rdquo; and the answer I got back began with this text:</p><pre class=" language-text"><code class="prism  language-text">The minimum code required depends on what you are trying to do. The simplest meaningful scenario covered is adding a message to an Azure Storage Queue from a server-side app using a Managed Identity (the recommended production approach).

Assumptions (already configured in Azure):
- The queue already exists
- The App Service has a User Assigned Managed Identity
- That identity has the Storage Queue Data Message Sender role on the queue 
</code></pre><p>That was followed by the code to write out a message to a storage queue (about another 200 words). What I especially liked about response is that the opening cued me (pun intended) to ask follow-up questions. For example, my next prompts would probably be &ldquo;How do I create a User-Assigned Managed Identity?&rdquo; and/or &ldquo;How do I read a message from the queue?&rdquo;</p><h2 id="partial-document-queries">Partial Document Queries</h2><p>However, if you have a very large document (and your LLM is charging you by your token count), you might want to use the Telerik <code>PartialContextQuestionProcessor</code> processor. Using this processor does make an assumption: that you don&rsquo;t need the whole document to answer any one question. And, for a large document that, presumably covers multiple topics, that may be a reasonable assumption.</p><p>Using the <code>PartialContextQuestionProcessor</code> is more complicated than using a <code>CompleteContextQuestionProcessor</code>. First, you&rsquo;ll need to pick an LLM that supports embeddings (I used Azure&rsquo;s text-embedding-3-large LLM). Second, you&rsquo;ll need to provide a custom &ldquo;embedding&rdquo; class that will segment your content into fragments to be processed individually.</p><p>I&rsquo;ve provided a version of the default Telerik &ldquo;embedding&rdquo; class at the end of this post. When you instantiate this class, you&rsquo;ll need to pass:</p><ul><li>The security key for your deployment</li><li>The first segment of the URL for your LLM&rsquo;s deployment (i.e., everything up to the first single forward slash)</li><li>Your deployment&rsquo;s name</li><li>The version of your LLM</li></ul><p>With your &ldquo;embedding&rdquo; class available, to use the <code>PartialContextQuestionProcessor</code> you need to:</p><ol><li>Use the <code>EmbeddingSettingsFactory</code>object&rsquo;s static <code>CreateSettingsForTextDocuments</code> method to create an <code>IEmbeddingSettings</code> object, passing a token count and the name of your deployment</li><li>Create your &ldquo;embedding&rdquo; object</li><li>Create a <code>PartialContextQuestionProcessor</code>, passing a chat client, your embedding object, your settings object and your content</li><li>Pass your query to the <code>PartialContextQuestionProcessor</code> object&rsquo;s <code>Answer</code> method</li><li>Catch the result in a string</li></ol><p>Typical code looks like this (note the lower token count) and is still only four lines of code:</p><pre class=" language-csharp"><code class="prism  language-csharp">IEmbeddingSettings paOpts <span class="token operator">=</span>
       EmbeddingSettingsFactory<span class="token punctuation">.</span><span class="token function">CreateSettingsForTextDocuments</span><span class="token punctuation">(</span><span class="token number">3500</span><span class="token punctuation">,</span> 
                                                                                                                                          &ldquo;<span class="token operator">&lt;</span>deployment name<span class="token operator">&gt;</span>&rdquo;<span class="token punctuation">)</span><span class="token punctuation">;</span>
DefaultAIEmbedder embedder <span class="token operator">=</span>
    <span class="token keyword">new</span> <span class="token class-name">DefaultAIEmbedder</span><span class="token punctuation">(</span>
        <span class="token string">"&lt;key&gt;"</span><span class="token punctuation">,</span>
        <span class="token string">"&lt;deployment URL&gt;"</span><span class="token punctuation">,</span>
        <span class="token string">"&lt;deployment name&gt;"</span><span class="token punctuation">,</span>
        <span class="token string">"&lt;deployment version&gt;"</span>
        <span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">using</span> <span class="token punctuation">(</span>PartialContextQuestionProcessor pa <span class="token operator">=</span>
           <span class="token keyword">new</span> <span class="token class-name">PartialContextQuestionProcessor</span><span class="token punctuation">(</span>chatClt<span class="token punctuation">,</span> embedder<span class="token punctuation">,</span> paOpts<span class="token punctuation">,</span> std<span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    <span class="token keyword">string</span> answer <span class="token operator">=</span> <span class="token keyword">await</span> pa<span class="token punctuation">.</span><span class="token function">AnswerQuestion</span><span class="token punctuation">(</span>prompt<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><h3 id="partial-query-results">Partial Query Results</h3><p>I then retried the &ldquo;How do I create a storage queue&rdquo; question with the same content I used for the <code>CompleteContextQuestionProcessor</code>. Here&rsquo;s the result I got, which, you&rsquo;ll notice, omits the material on creating the Storage Account that the <code>CompleteContextQuestionProcessor</code> answer included:</p><pre class=" language-text"><code class="prism  language-text">Here is how you create a storage queue in the Azure Portal. First, make sure you already have a Storage Account created that is dedicated to queues.
Then do the following:
1.Go to the Azure Portal.
2. Open your Storage Account.
3. From the menu on the left, select Data Storage, then Queues.
4. On the Queues page, click the + Queue button at the top.
5. Enter a queue name. The name must be lowercase, contain no spaces, and have no special characters. Example: updateproductinventory
6. Click OK.
That&rsquo;s it. The queue is created immediately.
</code></pre><p>In answer to my &ldquo;What is the minimal code&rdquo; question, I got identical code, but the introduction wasn&rsquo;t as comprehensive as with the <code>CompleteContextQuestionProcessor</code> (the prerequisites/assumptions section is terser, for example):</p><pre class=" language-text"><code class="prism  language-text">From the context, the smallest useful interpretation of &ldquo;minimal code&rdquo; is: The minimal code required to add a message to an Azure Storage Queue, assuming the queue already exists and security is already configured.
Below are the minimal working examples for both scenarios described in the context.
</code></pre><p>Still, I thought, a pretty good answer.</p><p>With those three processors (and an LLM and your content) you have all you need to create an AI-enabled backend. The next step is to create a frontend that supports your users interacting with your backend and meets their expectations for an AI-enabled application. That&rsquo;s my next two posts: <a target="_blank" href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-4-crafting-interactive-blazor-ui">Crafting an Interactive Blazor UI</a> and <a target="_blank" href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-5-creating-interactive-ui-javascript">Creating an Interactive UI in JavaScript</a>.</p><p>And here&rsquo;s that default embedder I promised:</p><pre class=" language-csharp"><code class="prism  language-csharp">    <span class="token keyword">internal</span> <span class="token keyword">class</span> <span class="token class-name">DefaultAIEmbedder</span> <span class="token punctuation">:</span> IEmbedder
    <span class="token punctuation">{</span>
        <span class="token keyword">internal</span> <span class="token keyword">readonly</span> HttpClient httpClient<span class="token punctuation">;</span>
        <span class="token keyword">internal</span> <span class="token keyword">readonly</span> <span class="token keyword">string</span> deploymentName<span class="token punctuation">;</span>
        <span class="token keyword">internal</span> <span class="token keyword">readonly</span> <span class="token keyword">string</span> apiVersion<span class="token punctuation">;</span>
        <span class="token keyword">internal</span> <span class="token function">DefaultAIEmbedder</span><span class="token punctuation">(</span><span class="token keyword">string</span> apiKey<span class="token punctuation">,</span> <span class="token keyword">string</span> url<span class="token punctuation">,</span> <span class="token keyword">string</span> deploymentName<span class="token punctuation">,</span> <span class="token keyword">string</span> apiVersion<span class="token punctuation">,</span><span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">this</span><span class="token punctuation">.</span>deploymentName <span class="token operator">=</span> deploymentName<span class="token punctuation">;</span>
            <span class="token keyword">this</span><span class="token punctuation">.</span>apiVersion <span class="token operator">=</span> apiVersion<span class="token punctuation">;</span>

            <span class="token keyword">this</span><span class="token punctuation">.</span>httpClient <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">HttpClient</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token keyword">this</span><span class="token punctuation">.</span>httpClient<span class="token punctuation">.</span>Timeout <span class="token operator">=</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromMinutes</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token keyword">this</span><span class="token punctuation">.</span>httpClient<span class="token punctuation">.</span>DefaultRequestHeaders<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span><span class="token string">"api-key"</span><span class="token punctuation">,</span> apiKey<span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token keyword">this</span><span class="token punctuation">.</span>httpClient<span class="token punctuation">.</span>DefaultRequestHeaders<span class="token punctuation">.</span>Accept<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">MediaTypeWithQualityHeaderValue</span><span class="token punctuation">(</span><span class="token string">"application/json"</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>            
            <span class="token keyword">this</span><span class="token punctuation">.</span>httpClient<span class="token punctuation">.</span>BaseAddress <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Uri</span><span class="token punctuation">(</span>Path<span class="token punctuation">.</span><span class="token function">TrimEndingDirectorySeparator</span><span class="token punctuation">(</span>url<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>

        <span class="token keyword">public</span> <span class="token keyword">async</span> Task<span class="token operator">&lt;</span>IList<span class="token operator">&lt;</span>Telerik<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>AI<span class="token punctuation">.</span>Core<span class="token punctuation">.</span>Embedding<span class="token operator">&gt;</span><span class="token operator">&gt;</span> <span class="token function">EmbedAsync</span><span class="token punctuation">(</span>IList<span class="token operator">&lt;</span>IFragment<span class="token operator">&gt;</span> fragments<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            AzureEmbeddingsRequest requestBody <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">AzureEmbeddingsRequest</span>
            <span class="token punctuation">{</span>
                Input <span class="token operator">=</span> fragments<span class="token punctuation">.</span><span class="token function">Select</span><span class="token punctuation">(</span>p <span class="token operator">=</span><span class="token operator">&gt;</span> p<span class="token punctuation">.</span><span class="token function">ToEmbeddingText</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">ToArray</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
                Dimensions <span class="token operator">=</span> <span class="token number">3072</span>
            <span class="token punctuation">}</span><span class="token punctuation">;</span>

            <span class="token keyword">string</span> json <span class="token operator">=</span> JsonSerializer<span class="token punctuation">.</span><span class="token function">Serialize</span><span class="token punctuation">(</span>requestBody<span class="token punctuation">)</span><span class="token punctuation">;</span>
            StringContent content <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">StringContent</span><span class="token punctuation">(</span>json<span class="token punctuation">,</span> Encoding<span class="token punctuation">.</span>UTF8<span class="token punctuation">,</span> <span class="token string">"application/json"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

            <span class="token keyword">using</span> HttpResponseMessage response <span class="token operator">=</span> <span class="token keyword">await</span> <span class="token keyword">this</span><span class="token punctuation">.</span>httpClient<span class="token punctuation">.</span><span class="token function">PostAsync</span><span class="token punctuation">(</span>
                <span class="token string">"openai/deployments/"</span> <span class="token operator">+</span> <span class="token keyword">this</span><span class="token punctuation">.</span>deploymentName <span class="token operator">+</span> <span class="token string">"/embeddings?api-version="</span> <span class="token operator">+</span> <span class="token keyword">this</span><span class="token punctuation">.</span>apiVersion<span class="token punctuation">,</span>
                content<span class="token punctuation">,</span>
                CancellationToken<span class="token punctuation">.</span>None<span class="token punctuation">)</span><span class="token punctuation">;</span>

            Telerik<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>AI<span class="token punctuation">.</span>Core<span class="token punctuation">.</span>Embedding<span class="token punctuation">[</span><span class="token punctuation">]</span> embeddings <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Telerik<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>AI<span class="token punctuation">.</span>Core<span class="token punctuation">.</span>Embedding</span><span class="token punctuation">[</span>fragments<span class="token punctuation">.</span>Count<span class="token punctuation">]</span><span class="token punctuation">;</span>

            <span class="token keyword">string</span> responseJson <span class="token operator">=</span> <span class="token keyword">await</span> response<span class="token punctuation">.</span>Content<span class="token punctuation">.</span><span class="token function">ReadAsStringAsync</span><span class="token punctuation">(</span>CancellationToken<span class="token punctuation">.</span>None<span class="token punctuation">)</span><span class="token punctuation">;</span>
            AzureEmbeddingsResponse<span class="token operator">?</span> responseObj <span class="token operator">=</span> JsonSerializer<span class="token punctuation">.</span><span class="token generic-method function">Deserialize<span class="token punctuation">&lt;</span>AzureEmbeddingsResponse<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span>responseJson<span class="token punctuation">)</span><span class="token punctuation">;</span>

            List<span class="token operator">&lt;</span>EmbeddingData<span class="token operator">&gt;</span> sorted <span class="token operator">=</span> responseObj<span class="token operator">!</span><span class="token punctuation">.</span>Data<span class="token punctuation">.</span><span class="token function">OrderBy</span><span class="token punctuation">(</span>d <span class="token operator">=</span><span class="token operator">&gt;</span> d<span class="token punctuation">.</span>Index<span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">ToList</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            List<span class="token operator">&lt;</span><span class="token keyword">float</span><span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token operator">&gt;</span> result <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">List</span><span class="token operator">&lt;</span><span class="token keyword">float</span><span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token operator">&gt;</span><span class="token punctuation">(</span>sorted<span class="token punctuation">.</span>Count<span class="token punctuation">)</span><span class="token punctuation">;</span>

            <span class="token keyword">for</span> <span class="token punctuation">(</span><span class="token keyword">int</span> i <span class="token operator">=</span> <span class="token number">0</span><span class="token punctuation">;</span> i <span class="token operator">&lt;</span> sorted<span class="token punctuation">.</span>Count<span class="token punctuation">;</span> i<span class="token operator">++</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                EmbeddingData item <span class="token operator">=</span> sorted<span class="token punctuation">[</span>i<span class="token punctuation">]</span><span class="token punctuation">;</span>
                embeddings<span class="token punctuation">[</span>i<span class="token punctuation">]</span> <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Telerik<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>AI<span class="token punctuation">.</span>Core<span class="token punctuation">.</span>Embedding</span><span class="token punctuation">(</span>fragments<span class="token punctuation">[</span>i<span class="token punctuation">]</span><span class="token punctuation">,</span> item<span class="token punctuation">.</span>Embedding<span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>

            <span class="token keyword">return</span> embeddings<span class="token punctuation">;</span>
        <span class="token punctuation">}</span>

        <span class="token keyword">private</span> <span class="token keyword">sealed</span> <span class="token keyword">class</span> <span class="token class-name">AzureEmbeddingsRequest</span>
        <span class="token punctuation">{</span>
            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"input"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> <span class="token keyword">string</span><span class="token punctuation">[</span><span class="token punctuation">]</span> Input <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> Array<span class="token punctuation">.</span><span class="token generic-method function">Empty<span class="token punctuation">&lt;</span><span class="token keyword">string</span><span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"dimensions"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> <span class="token keyword">int</span><span class="token operator">?</span> Dimensions <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
        <span class="token punctuation">}</span>

        <span class="token keyword">private</span> <span class="token keyword">sealed</span> <span class="token keyword">class</span> <span class="token class-name">AzureEmbeddingsResponse</span>
        <span class="token punctuation">{</span>
            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"data"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> EmbeddingData<span class="token punctuation">[</span><span class="token punctuation">]</span> Data <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> Array<span class="token punctuation">.</span><span class="token generic-method function">Empty<span class="token punctuation">&lt;</span>EmbeddingData<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"model"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> <span class="token keyword">string</span><span class="token operator">?</span> Model <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>

            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"usage"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> UsageInfo<span class="token operator">?</span> Usage <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
        <span class="token punctuation">}</span>

        <span class="token keyword">private</span> <span class="token keyword">sealed</span> <span class="token keyword">class</span> <span class="token class-name">UsageInfo</span>
        <span class="token punctuation">{</span>
            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"prompt_tokens"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> <span class="token keyword">int</span> PromptTokens <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>

            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"total_tokens"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> <span class="token keyword">int</span> TotalTokens <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
        <span class="token punctuation">}</span>

        <span class="token keyword">private</span> <span class="token keyword">sealed</span> <span class="token keyword">class</span> <span class="token class-name">EmbeddingData</span>
        <span class="token punctuation">{</span>
            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"embedding"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> <span class="token keyword">float</span><span class="token punctuation">[</span><span class="token punctuation">]</span> Embedding <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> Array<span class="token punctuation">.</span><span class="token generic-method function">Empty<span class="token punctuation">&lt;</span><span class="token keyword">float</span><span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

            <span class="token punctuation">[</span>System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span><span class="token function">JsonPropertyName</span><span class="token punctuation">(</span><span class="token string">"index"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
            <span class="token keyword">public</span> <span class="token keyword">int</span> Index <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
        <span class="token punctuation">}</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>   
</code></pre><img src="https://feeds.telerik.com/link/23068/17323733.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:6cffd8be-e8a5-4991-8d63-3944f9ce8737</id>
    <title type="text">When Your Coding Assistant Finally Got X-Ray Vision</title>
    <summary type="text">The Fiddler Everywhere MCP server gives your coding assistant network inspection capabilities for debugging right inside your editor.</summary>
    <published>2026-04-20T16:14:55Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Nikolay Iliev </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17322386/when-your-coding-assistant-finally-got-x-ray-vision"/>
    <content type="text"><![CDATA[<p><span class="featured">The Fiddler Everywhere MCP server gives your coding assistant network inspection capabilities for debugging right inside your editor.</span></p><p>Let me paint you a picture.</p><p>You are sitting at your desk. Your app loads in the browser. The page renders. The buttons work. The data shows up. Everything looks fine.</p><p>Except it is not fine. Somewhere underneath that perfectly rendered page, a request is taking 3 seconds when it should take 200 milliseconds. Another endpoint is returning a 200 but leaking an auth token in a query parameter. A third one is completely missing its Cache-Control header, so every single page refresh costs your users the full round-trip all over again.</p><p>But hey&mdash;the page loads. So it is fine, right?</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-04/this-is-fine.png?sfvrsn=1250927d_2" alt="Question Hound comic meme with dog sitting in room on fire saying, This is fine" /><br /><span style="font-size:11px;">Image Credit: <a target="_blank" href="https://gunshowcomic.com/648">KC Green</a></span><br /><span style="font-size:14px;"><strong>Your browser: &ldquo;Everything rendered successfully!&rdquo; Your network traffic: literal dumpster fire.</strong></span></p><p>This was the old debugging workflow for years: You open DevTools. You scroll through 47 network requests. You squint at the Timing column. You click into a request, copy the headers, paste them into a notepad, try to figure out if X-Content-Type-Options is set or not. By request number six, you have forgotten what you found in request number two. You do that for 12 more requests.</p><p>Then you switch back to your editor, ask your coding assistant for help, and it says something like: &ldquo;You might want to check if your caching headers are configured properly.&rdquo;</p><p>Might. Want. To check.</p><p>It does not know. It cannot know. It is reading your Express routes and giving you its best guess based on what the code <em>probably</em> does. It has never seen the actual traffic.</p><h2 id="now-imagine-this-instead">Now Imagine This Instead</h2><p>You open your editor. You type:</p><p><code>#fiddler Start capturing HTTP traffic in Fiddler using Chrome</code></p><p>A Chrome window opens with the Fiddler proxy already configured. You click around your app for thirty seconds. Then you type:</p><p><code>#fiddler Identify the slowest API endpoints in the captured traffic</code></p><p>And your coding assistant&mdash;which can now <em>actually see</em> the captured sessions&mdash;comes back with:</p><p><code>GET /api/products/featured &mdash; average 2,847ms across 4 requests, 52KB response body, no Cache-Control header. This is your primary bottleneck.</code></p><p>No guessing. No &ldquo;you might want to.&rdquo; Just facts, pulled from real HTTPS sessions.</p><p>This is what the Progress Telerik <a target="_blank" href="https://www.telerik.com/fiddler/fiddler-everywhere/mcp">Fiddler Everywhere MCP server</a> does. It gives your coding assistant network vision. MCP&mdash;Model Context Protocol&mdash;is the open standard that lets your editor&rsquo;s assistant call external tools during a conversation. The Fiddler MCP server exposes captured traffic data through those tools: session lists, request and response details, headers, bodies, timing, TLS info&mdash;the whole picture.</p><p>The setup? A JSON config file in your workspace:</p><pre class=" language-json"><code class="prism  language-json"><span class="token punctuation">{</span>  
  <span class="token string">"servers"</span><span class="token punctuation">:</span> <span class="token punctuation">{</span>  
    <span class="token string">"fiddler"</span><span class="token punctuation">:</span> <span class="token punctuation">{</span>  
      <span class="token string">"type"</span><span class="token punctuation">:</span> <span class="token string">"http"</span><span class="token punctuation">,</span>  
      <span class="token string">"url"</span><span class="token punctuation">:</span> <span class="token string">"http://localhost:8868/mcp"</span><span class="token punctuation">,</span>  
      <span class="token string">"headers"</span><span class="token punctuation">:</span> <span class="token punctuation">{</span>  
        <span class="token string">"Authorization"</span><span class="token punctuation">:</span> <span class="token string">"ApiKey YOUR_API_KEY_HERE"</span>  
      <span class="token punctuation">}</span>  
    <span class="token punctuation">}</span>  
  <span class="token punctuation">}</span>  
<span class="token punctuation">}</span>  
</code></pre><p>Generate the key in Fiddler Everywhere, drop the config and you are connected. Works with VS Code, Cursor, Claude Code, Windsurf, Copilot CLI&mdash;the full lineup.</p><h2 id="the-prompts-that-make-you-feel-like-a-wizard">The Prompts That Make You Feel Like a Wizard</h2><p>Once Fiddler MCP is connected, the things you can ask your assistant become genuinely fun:</p><ul><li><code>#fiddler Show me all failed requests (status codes 4xx and 5xx)</code></li><li><code>#fiddler Identify sessions with weak or missing security headers</code></li><li><code>#fiddler Create a comprehensive report covering security highlights and performance optimizations</code></li><li><code>#fiddler Analyze caching efficiency for the captured sessions</code></li></ul><p>Each of these triggers real tool calls. The assistant reads actual captured sessions, not your imagination of what the sessions might look like. That means the security audit it produces is based on the headers your server <em>actually sent</em>, not the headers it <em>assumes</em> you configured.</p><p>The <a target="_blank" href="https://www.telerik.com/fiddler/fiddler-everywhere/documentation/mcp-server/prompt-library">Fiddler Prompt Library</a> has dozens more if you want to explore.</p><h2 id="skip-the-setup-fiddler-agent-skills">Skip the Setup: Fiddler Agent Skills</h2><p>If even the two-minute config feels like too much (I get it, we are all busy), the official <a target="_blank" href="https://github.com/telerik/fiddler-agent-tools">Fiddler agent skills</a> do it for you. Clone the repo, drop the skills into your project, and tell your assistant:</p><p><code>Set up Fiddler MCP</code></p><p>Done. Port discovery, API key retrieval, config file, .gitignore update&mdash;all handled. There is also a skill that analyzes captured traffic after you run a feature and gives you a structured pass/fail report. Honestly, it is the kind of thing that makes you wonder why you were ever doing it manually.</p><h2 id="build-your-own-debugging-agents-this-is-where-it-gets-good">Build Your Own Debugging Agents (This Is Where It Gets Good)</h2><p>Here is where things get spicy. The built-in skills are great, but you can write your own. A skill is just a Markdown file&mdash;a <a target="_blank" href="http://SKILL.md">SKILL.md</a>&mdash;that tells your assistant which Fiddler tools to call, in what order, and how to format the output.</p><p>Some agents I think every team should consider building:</p><ul><li><p><strong>traffic-security-auditor</strong> &ndash; Scans every session for missing security headers, tokens exposed in URLs, insecure connections. Produces a prioritized report. Basically your own automated pen-test lite that runs from a chat prompt.</p></li><li><p><strong>api-performance-watchdog</strong> &ndash; Flags slow endpoints, checks caching headers, reports payload bloat. Think of it as a performance review for your API&mdash;except this one is actually useful. (Sorry, managers.)</p></li><li><p><strong>checkout-flow-verifier</strong> &ndash; Replays a captured e-commerce checkout flow and verifies each step hit the right status codes and redirects. Because nobody wants to find out the payment confirmation page is broken from an angry customer email.</p></li></ul><p>The <a target="_blank" href="https://www.telerik.com/fiddler/fiddler-everywhere/documentation/agent-tools/creating-custom-skills">Creating Custom Skills</a> guide has the full format and a working example.</p><h2 id="you-never-have-to-leave-your-editor">You Never Have to Leave Your Editor</h2><p>Here is the part that really lands once you try it: you do not need to switch to Fiddler Everywhere. You do not need to open a separate desktop application. You do not need to context-switch at all.</p><p>Everything happens inside the tool you are already using&mdash;VS Code with Copilot, Claude Code in the terminal, Cursor, Windsurf, whatever your setup is. Capture traffic, filter sessions, inspect headers, create rules, run a full security audit, all from the same chat window where you write code.</p><p>That is the whole point. The MCP server brings Fiddler network inspection capabilities directly into your coding workflow. Filters? Ask for them in a prompt. Rules? Create them with a sentence. Session details? One tool call away. You get the full power of a professional traffic inspector without ever breaking your flow.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-04/enlightened-debugging.png?sfvrsn=6e4e7ed3_2" alt="Enlightenment meme with progressive stages: Reading server logs, opening Chrome DevTools, Opening Fiddler desktop, Typing #fiddler Analyze my traffic" /><br /><span style="font-size:14px;"><strong>When your entire debugging workflow fits inside one chat window and zero browser tabs.</strong></span></p><h2 id="try-it">Try It</h2><p>Seriously&mdash;if you are already using a coding assistant while you code, giving it access to your network traffic is one of the highest-leverage things you can do. The guessing stops. The analysis gets real. And you might actually enjoy debugging for once.</p><p><a href="https://www.telerik.com/download/fiddler-everywhere" class="Btn" target="_blank">Try Fiddler Everywhere</a></p><h3 id="seriously-though-tell-us-what-you-think">Seriously Though, Tell Us What You Think</h3><p>We are building this as fast as we can, and your feedback is what steers the ship. Tried a prompt that did not work well? Built a custom skill that saved your team hours? Found a bug? We want all of it.</p><ul><li><strong>Email</strong>: <a href="https://www.telerik.commailto:fiddler-support@progress.com" target="_blank">fiddler-support@progress.com</a></li><li><strong>GitHub issues</strong>: <a target="_blank" href="https://github.com/telerik/fiddler-everywhere/issues">github.com/telerik/fiddler-everywhere/issues</a></li></ul><img src="https://feeds.telerik.com/link/23068/17322386.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:9968b104-0478-45a0-bd7b-e2e5551dc52a</id>
    <title type="text">Creating a Custom AI Agent with Telerik Tools 2: Loading and Accessing Your Agent’s Content</title>
    <summary type="text">With your LLM set up with a custom AI agent, let’s connect our content via Telerik Document Processing Libraries AI processor—resulting in a RAG-enhanced app!</summary>
    <published>2026-04-15T20:54:34Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Peter Vogel </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17319853/creating-custom-ai-agent-telerik-tools-2-loading-accessing-agent-content"/>
    <content type="text"><![CDATA[<p>&nbsp;</p><p><span class="featured">With your LLM set up with a custom AI agent, let&rsquo;s connect our content via Telerik Document Processing Libraries AI processor&mdash;resulting in a RAG-enhanced app!</span></p><p>In my previous post, I covered how to set up a <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-1-configuring-llm-azure-ollama" target="_blank">Large Language Model (LLM) either in the cloud using Azure AI or on your desktop/server using Ollama</a>. This post walks through the code you need to load your own content into a custom AI agent based on that LLM.</p><p>That will let you create a <a target="_blank" href="https://www.telerik.com/blogs/fixing-llms-retrieval-augmented-generation">Retrieval-Augmented Generation</a>&ndash;enhanced application that provides grounded answers on the content that matters to your users. You could use this code to, for example, create a custom AI assistant for any part of your organization.</p><p>There are four steps to creating that application:</p><ol><li>Configure your application</li><li>Create a chat client to work with your LLM</li><li>Convert your content into a <a target="_blank" href="https://www.telerik.com/blogs/loading-accessing-converting-office-pdf-documents-telerik-document-processing-libraries">format that your chat client will accept using Progress Telerik Document Processing Libraries</a></li><li>Pass the chat client, your content and a prompt to the appropriate Telerik AI processor</li></ol><h2 id="configuring-the-application">Configuring the Application</h2><p>I&rsquo;m going to demonstrate the code for loading your content using a Blazor application (Blazor simplifies creating an interactive application that integrates server and client-side processing). However, the code in this post will be very similar in any C# application and, in a later post, I&rsquo;ll wrap my agent in a web service and access it from client-side JavaScript code.</p><p>Once your project is created, your next step is to add the necessary NuGet packages. The best advice I can give you around picking the right NuGet package is to a) include prerelease versions and b) always take the most recent package available.</p><p>The packages you&rsquo;ll need are:</p><ul><li>For OpenAI LLMs (like the LLMs I picked in my previous post):
        <ul><li>Azure.AI.OpenAI</li><li>Microsoft.Extensions.AI.OpenAI</li><li>OpenAI (probably already installed with the previous packages)</li></ul></li><li>For Ollama:
        <ul><li>OllamaSharp</li></ul></li><li>For Telerik document processing:
        <ul><li>Telerik.Documents.AIConnector</li><li>Telerik.Documents.Core</li><li>Telerik.Documents.Flow (to work with DOCX, HTML, and RTF files)</li><li>Telerik.Documents.Fixed (to work with PDF files)</li></ul></li></ul><h2 id="accessing-the-llm">Accessing the LLM</h2><p>Connecting to your LLM depends on whether you&rsquo;re using Azure or Ollama to host your LLM. (And, if you just created your LLM deployment, it can take up to 15 minutes before your LLM is ready to be used.)</p><h3 id="azure-hosted-llm">Azure-hosted LLM</h3><p>If you&rsquo;re using an Azure LLM then you need to create an <code>AzureOpenAIClient</code>, passing the URL and key from your deployment&rsquo;s information page in the <a target="_blank" href="http://ai.azure.com">ai.azure.com</a> portal (see my previous post).</p><p>Once you&rsquo;ve created your <code>AzureOpenAIClient</code>, you can use its <code>GetChatClient</code> method to retrieve a <code>ChatClient</code>. But, rather than access that <code>ChatClient</code> directly, you should use the <code>AsIChatClient</code> method to, effectively, cast the <code>ChatClient</code> to the more general purpose <code>IChatClient</code> interface. All that just requires just these two lines of code:</p><pre class=" language-csharp"><code class="prism  language-csharp">AzureOpenAIClient aiclt <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span>
                <span class="token keyword">new</span> <span class="token class-name">Uri</span><span class="token punctuation">(</span><span class="token string">"&lt;deployment URL&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
                <span class="token keyword">new</span> <span class="token class-name">AzureKeyCredential</span><span class="token punctuation">(</span><span class="token string">"&lt;access key&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
IChatClient chatClt <span class="token operator">=</span> aiclt<span class="token punctuation">.</span><span class="token function">GetChatClient</span><span class="token punctuation">(</span><span class="token string">"&lt;Deployment Name&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">AsIChatClient</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><h3 id="ollama-hosted-llm">Ollama-hosted LLM</h3><p>If you&rsquo;re working with Ollama, you create a chat client with the <code>IChatClient</code> interface by creating an <code>OllamaApiClient</code> object, passing the URL for your local Ollama server and the LLM that you want to use. That looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">IChatClient chatClt <span class="token operator">=</span>
    <span class="token keyword">new</span> <span class="token class-name">OllamaApiClient</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Uri</span><span class="token punctuation">(</span><span class="token string">"&lt;address for Ollama&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">,</span> 
                                                   <span class="token string">"&lt;LLM name&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>Do be aware: For a typical development machine, processing documents using Ollama is <em>not</em> going to be as responsive as using an LLM on Azure. For example, the document I used in this case study contains about 1,500 words and took a few seconds to summarize using one of the Azure LLMs. Using Ollama, that process sometimes took over a minute. In some cases, your application may time out waiting for Ollama to respond.</p><p>You can deal with that issue in Ollama by creating a custom<code>HttpClient</code> object and passing it to your <code>OllamaApiClient</code> when you create it.</p><p>Here&rsquo;s some sample code that creates an <code>HttpClient</code> that is a) tied to the Ollama client&rsquo;s URL (probably http://localhost:11434) and b) sets a five-minute timeout. The code then uses that custom HttpClient to create an Ollama client:</p><pre class=" language-csharp"><code class="prism  language-csharp">HttpClient httpClt <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    BaseAddress <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Uri</span><span class="token punctuation">(</span><span class="token string">"&lt;address for Ollama&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">,</span>
    Timeout <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">TimeSpan</span><span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">,</span> <span class="token number">5</span><span class="token punctuation">,</span> <span class="token number">0</span><span class="token punctuation">)</span>
<span class="token punctuation">}</span><span class="token punctuation">;</span>

IChatClient chatClt <span class="token operator">=</span>
          <span class="token keyword">new</span> <span class="token class-name">OllamaApiClient</span><span class="token punctuation">(</span>httpClt<span class="token punctuation">,</span> <span class="token string">"&lt;model name&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><h2 id="loading-content">Loading Content</h2><p>The Telerik Document Processing Libraries (DPL) provide&nbsp;<a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/editing/gen-ai-powered-document-insights/overview">multiple AI processors</a> for analyzing documents.</p><p>In this post, I&rsquo;m going to focus on the summarization processor (I&rsquo;ll look at other processors in my next post). Since all the processors expect to be passed a DPL <code>SimpleTextDocument</code>, switching between processors is simple.</p><p>As an example, here&rsquo;s the code to convert a DOCX file into a <code>SimpleTextDocument</code> using Telerik WordsProcessing library (the Flow library also handles RTF and HTML files; for PDF files, you would use Telerik PdfProcessing library):</p><pre class=" language-csharp"><code class="prism  language-csharp">RadFlowDocument dDoc<span class="token punctuation">;</span>
DocxFormatProvider dProv <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> System<span class="token punctuation">.</span>IO<span class="token punctuation">.</span>File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">@"wwwroot/documents/scrolltoitem.docx"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                dDoc <span class="token operator">=</span> dProv<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
SimpleTextDocument std <span class="token operator">=</span> dDoc<span class="token punctuation">.</span><span class="token function">ToSimpleTextDocument</span><span class="token punctuation">(</span>TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>Now that you have a <code>SimpleTextDocument</code>, your next step is to configure one of the Telerik AI processors to work with it.</p><p>In terms of AI processing, this document represents the content (or corpus) to be used by your LLM &hellip; but it&rsquo;s a very small corpus that consists of only a single document. While I&rsquo;m going to stick with a single document for this case study, you can use the <code>Merge</code> method on both Flow and Fixed documents to load multiple documents into a single document object before creating your <code>SimpleTextDocument</code> from that single document.</p><p>This code, for example, loads one DOCX file and then merges a second one into it, before creating a <code>SimpleTextDocument</code> from the result:</p><pre class=" language-csharp"><code class="prism  language-csharp">RadFlowDocument ddocMaster<span class="token punctuation">;</span>
RadFlowDocument ddocTemp<span class="token punctuation">;</span>
DocxFormatProvider dprov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> System<span class="token punctuation">.</span>IO<span class="token punctuation">.</span>File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">@"wwwroot/documents/InitialDoc.docx"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    ddocMaster <span class="token operator">=</span> dprov<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>

<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> System<span class="token punctuation">.</span>IO<span class="token punctuation">.</span>File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">@"wwwroot/documents/SecondDoc.docx"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    ddocTemp <span class="token operator">=</span> dprov<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
ddocMaster<span class="token punctuation">.</span><span class="token function">Merge</span><span class="token punctuation">(</span>ddocTemp<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><h2 id="generating-summaries-in-your-agent">Generating Summaries in Your Agent</h2><p>The next step is to use one of the Telerik AI Connectors to enable your content for use by the LLM. To support this processing, you&rsquo;ll need to add the Telerik.Documents.AIConnector NuGet package to your project.</p><p>In this example, I&rsquo;m using the Telerik summarization processor to generate a summary of my custom content (more on the summarization processor and the other two Telerik AI processors in my next post):</p><pre class=" language-csharp"><code class="prism  language-csharp">SummarizationProcessorSettings spOpts <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token punctuation">(</span><span class="token number">3500</span><span class="token punctuation">,</span> <span class="token string">"Summarize in 100 words"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">using</span> <span class="token punctuation">(</span>SummarizationProcessor sp <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token punctuation">(</span>chatClt<span class="token punctuation">,</span> spOpts<span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
   <span class="token keyword">string</span> summary <span class="token operator">=</span> <span class="token keyword">await</span> sp<span class="token punctuation">.</span><span class="token function">Summarize</span><span class="token punctuation">(</span>std<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>Don&rsquo;t expect a fast response when testing&mdash;it takes some time to absorb a complete document. The Azure-based LLMs I used would pause for three or four seconds to absorb each document, while the Ollama LLM took about 90 seconds on my laptop.</p><p>Which raises an important point: The summarization processor passes the <em>whole</em> document to your LLM&mdash;that can be both time consuming and expensive. You might want to catch the <a target="_blank" href="https://www.telerik.com/document-processing-libraries/documentation/libraries/radwordsprocessing/editing/gen-ai-powered-document-insights/summarization-processor"><code>SummaryResourceCalculated</code> event</a> that the processor raises. The <code>EventArgs</code> parameter passed to that event includes two properties (<code>EstimatedCallsRequired</code> and <code>EstimatedTokensRequired</code>) that you can check to see if the request is larger than you want to handle. If the request is &ldquo;too big,&rdquo; you can set the <code>EventArgs</code> parameter&rsquo;s <code>ShouldContinueExecution</code>property to false to stop processing.</p><p>And there you have your own, custom AI agent which you can load with whatever content you want to create. You can do more than just summarize document content, though, as I&rsquo;ll cover in my next post.</p><p>But, looking ahead to providing a frontend for users to access my custom AI agent, I have two UI issues that I should be thinking about to create a genuinely useful agent:</p><ul><li>Users will probably want to be able to enter an initial prompt and then refine it to get a better version of my custom agent&rsquo;s response.</li><li>Telerik has two other AI processors that support other types of AI processing. I want to give my user the chance to pick one of those other processors.</li></ul><p>And that&rsquo;s ignoring the reality that, thanks to the existing AI-enabled UIs my users are already using (looking at you, ChatGPT), my users have expectations about what an AI-enabled UI should look like. All that suggests that my application will need an interactive UI. So, after my <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-3-summarizing-querying" target="_blank">next post</a>, I&rsquo;m going to use the Telerik AI Prompt component to create a UI that provides my user with that interactivity.</p><hr /><p>Explore Telerik Document Processing Libraries, plus component libraries, reporting and more with a free trial of the Telerik DevCraft bundle:</p><p><a href="https://www.telerik.com/download" class="Btn" target="_blank">Try DevCraft</a></p><p>&nbsp;</p><img src="https://feeds.telerik.com/link/23068/17319853.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:1f05ab79-badb-485a-b3f4-0c01865d5b9a</id>
    <title type="text">Creating a Custom AI Agent with Telerik Tools 1: Configuring an LLM for Azure or Ollama</title>
    <summary type="text">Create a custom RAG-enabled AI agent for an LLM with Progress Telerik Document Processing Libraries AI connectors.</summary>
    <published>2026-04-07T20:50:49Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Peter Vogel </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17315466/creating-custom-ai-agent-telerik-tools-1-configuring-llm-azure-ollama"/>
    <content type="text"><![CDATA[<p><span class="featured">Create a custom RAG-enabled AI agent for an LLM with Progress Telerik Document Processing Libraries AI connectors.</span></p><p>The problem with general-purpose AI agents is that they are subject to &ldquo;hallucinations&rdquo; (these days, we say that those agents produce answers that aren&rsquo;t &ldquo;grounded&rdquo;).</p><p>One solution to that problem is to create a custom AI agent with your own content and have your agent use that content to generate grounded answers (this is referred to as <a target="_blank" href="https://www.telerik.com/blogs/fixing-llms-retrieval-augmented-generation">Retrieval Augmented Generation</a> or RAG). Effectively, you can create a dedicated, reliable AI assistant for your users for any aspect of your organization.</p><p>Progress Telerik <a target="_blank" href="https://www.telerik.com/document-processing-libraries">Document Processing Libraries</a> (DPL) include a set of AI connectors that support creating those custom RAG-enabled AI agents of your own using any of the existing Large Language Models (LLMs) available to you in Azure or on your own computer/server using Ollama. And, once that agent is created, Telerik UI tools will let you integrate it into any application.</p><p>So, this post kicks off a series of posts where I&rsquo;m going to walk you through <em>all</em> of the steps you need to create a custom AI agent by using Telerik DPL (and related AI tools), integrated with an LLM available on Azure or in Ollama. Once you&rsquo;ve created an agent, I&rsquo;ll show you how to add that custom agent into your application&rsquo;s UI using AI-enabled Telerik UI components in either JavaScript or Blazor (though you could also create your frontend in ASP.NET, Windows Forms or .NET MAUI).</p><p>But &hellip; having said that, if all you want to do is add an AI prompt to your application, then, thanks to Telerik tools, this post might be the only one you need. At the end of this post, I&rsquo;ll show you how to create a simple frontend for your application to use your LLM. In fact, if you&rsquo;ve already got an LLM deployed (which is what this post is about), you might want to skip the rest of this post and go directly to that last section.</p><h2 id="picking-your-llm-provider">Picking Your LLM Provider</h2><p>If you stick with Microsoft&rsquo;s offerings, you actually have three options for creating the LLM your application will use. The good news here is that, thanks to Microsoft and Telerik tools, it doesn&rsquo;t make much difference to your code which of those three options you use.</p><p>Your three choices are:</p><ul><li><p><strong>Microsoft Foundry</strong>: This gives you access to a wide variety of LLMs from multiple providers (including the OpenAI LLMs), while giving you integration with Azure security. Microsoft Foundry also gives you extensive monitoring for your LLM, enables data privacy and supports integration with other Azure services. This is Microsoft&rsquo;s recommended option. I&rsquo;ll call this the &ldquo;Foundry option.&rdquo;</p></li><li><p><strong>Azure OpenAI</strong>: This is the easiest option to set up but also provides the least access to Azure functionality. The Azure OpenAI option gives you access only to OpenAI&rsquo;s LLMs and only limited integration with other Azure resources (principally, security). With this choice you do, however, get access to the latest OpenAI LLMs, potentially before they show up in Microsoft Foundry. I&rsquo;ll call this the &ldquo;OpenAI-only option.&rdquo;</p></li><li><p><strong>Ollama</strong>: Unlike OpenAI or Microsoft Foundry, Ollama runs on your local computer, rather than in the cloud. Since there are no API fees, that makes Ollama an attractive choice for cheaper solutions (provided you have a powerful enough development computer). I&rsquo;ll call this the &ldquo;Client-side option.&rdquo;</p></li></ul><aside><hr data-sf-ec-immutable="" /><div class="row"><div class="col-4 u-normal-full u-small-mb0"><h4 class="u-fs20 u-fw5 u-lh125 u-mb0">Loading, Accessing and Converting Office and PDF Documents with Telerik Document Processing Libraries</h4></div><div class="col-8"><p class="u-fs16 u-mb0">Here&rsquo;s what you need to get started with <a target="_blank" href="https://www.telerik.com/blogs/loading-accessing-converting-office-pdf-documents-telerik-document-processing-libraries">Telerik Document Processing Libraries to work with PDF, Word and Excel files</a> (and, like any good suite, make all those document types look very much alike).</p></div></div><hr class="u-mb3" /></aside><h2 id="setting-up-openaimicrosoft-foundry">Setting Up OpenAI/Microsoft Foundry</h2><p>While I&rsquo;m treating the OpenAI-only option as a separate case from the Foundry option, the OpenAI-only option is actually hosted in Microsoft Foundry. As a result, the processes for setting up the OpenAI-only or the Foundry option are very similar:</p><ol><li>In the Azure portal at <a target="_blank" href="http://portal.azure.com">portal.azure.com</a>, create an Azure resource.</li><li>In the Microsoft Foundry portal at <a target="_blank" href="http://ai.azure.com">ai.azure.com</a>, add an LLM&mdash;a &ldquo;deployment&rdquo;&mdash;to that resource.</li></ol><h3 id="creating-the-resource">Creating the Resource</h3><p>To start, surf to the <a target="_blank" href="https://portal.azure.com">Azure Portal</a> and search for Microsoft Foundry. On the Microsoft Foundry page, in the menu on the left, expand the <strong>Use with Foundry</strong> node and click on either:</p><ul><li>The Foundry node for the Foundry option</li><li>The Azure OpenAI node for the OpenAI-only options</li></ul><p>Either choice will open a page on the right. On that new page, click on the +Create menu choice at the left end of the menu running across the top of the page. That will start the wizard that will create your Azure resource.</p><p>If you opened this page from the Foundry node, you&rsquo;ll start the wizard for creating your Foundry resource.</p><p>If you opened this page from the OpenAI node, you&rsquo;ll get a dropdown list with two choices: OpenAI and Microsoft Foundry. This is, effectively, your last chance to switch to the Foundry option instead of OpenAI-only. Pick the OpenAI choice to open the wizard for creating an OpenAI-only resource.</p><p>Regardless of which wizard you&rsquo;ve invoked, on the wizard&rsquo;s first page you&rsquo;ll need to provide a resource group, a name for your resource and a region for your LLM to run in. In addition, on the first page:</p><ul><li>For a Foundry resource, you&rsquo;ll need to provide a default project name</li><li>For an Azure OpenAI resource, you&rsquo;ll need to select a <a target="_blank" href="https://azure.microsoft.com/en-ca/pricing/details/cognitive-services/openai-service/">pricing tier</a></li></ul><p>After that, it&rsquo;s just a matter of &ldquo;Next&rdquo;ing your way through the rest of the wizard&rsquo;s tabs.</p><h3 id="setting-network-access">Setting Network Access</h3><p>Both the Foundry and OpenAI-only wizards include a Network tab to control access to your resource. You have three choices on the Network tab:</p><ul><li>All networks: Gives access to your resource from anywhere</li><li>Selected networks: Limits access to a subnet on a specific Azure virtual network, plus a list of IP addresses (e.g., your development computer)</li><li>Disabled: Allows access only through a private endpoint on an Azure virtual network</li></ul><p>You would use the last two options if you were going to run your application on a VM on a virtual network or in an App Service. You don&rsquo;t need to use the network choices to control access to your resource. You could control access to your LLM just through the resource&rsquo;s Access Control/IAM roles, for example, or your application&rsquo;s built-in security. However, for a production application, you should always lean toward more control rather than less and pick whichever of these options that makes sense for limiting network access to your resource.</p><h3 id="setting-foundry-option">Setting Foundry Option</h3><p>The Foundry wizard includes three additional tabs that the OpenAI wizard does not:</p><ul><li>Storage: This tab provides access to multiple additional Azure resources. You can:<br />&nbsp;&nbsp;&nbsp; &raquo; Tie your resource to an Azure Key Vault where you can store passwords or other credentials that agents in your resource will need<br />&nbsp;&nbsp;&nbsp; &raquo; Turn on Application Insights to log activities in your resource<br />&nbsp;&nbsp;&nbsp; &raquo; Tie in an AI Search agent that your resource can access when processing requests<br />&nbsp;&nbsp;&nbsp; &raquo; Add a Storage account to hold uploaded files<br />&nbsp;&nbsp;&nbsp; &raquo; Integrate a CosmosDB account to hold conversation history.</li><li>Identity: Assign a <a target="_blank" href="https://www.telerik.com/blogs/coding-azure-4-securing-web-service-app-service-access-azure-sql-database">Managed Identity</a> to your resource to support agents that access other Azure resources</li><li>Encryption: Use your own encryption keys for any data stored by your resource</li></ul><p>For a proof-of-concept project, you can take the defaults on all these tabs.</p><p>Both wizards finish with the standard Tags tab and Review-and-create tab. When you get to that last tab, click the Create button to create your resource.</p><h3 id="selecting-an-llm">Selecting an LLM</h3><p>Your application interacts with a deployed instance of some LLM so your next step is to create a deployment that uses one of the LLMs available to your resource.</p><p>To do that, navigate to your resource and, on the Overview page, click on the Go to Foundry portal link at the top of the page. This will open a new tab in your browser displaying the <a target="_blank" href="http://ai.azure.com">ai.azure.com</a> portal. This is where you will select the LLM you&rsquo;ll use in your deployment.</p><p>To create a deployment, on the Microsoft Foundry page for your resource, in the menu on the left, click on the Model catalog node. That will take you to a page where you can select your LLM.</p><p>A warning: Over and above whatever criteria you have for getting the right model for your application, selecting a model may require some trial-and-error poking around. That&rsquo;s because:</p><ul><li>Some models are deprecated or may not be available for your resource (e.g., selecting a non-OpenAI LLM for an OpenAI-only resource).</li><li>You may not be eligible for some models.</li><li>Your subscription may not have the necessary resources to support a model.</li><li>The model you select may not support the processing you want to implement.</li></ul><p>Once you open the page listing available LLMs, if you got to the page from a:</p><ul><li>Foundry resource: You can browse the lists of LLMs from a variety of providers or you can search for an LLM using the search box just below those lists</li><li>OpenAI resource: You can browse the list of OpenAI LLMs</li></ul><p>When you select an LLM, Azure will display a page with high-level information about your LLM. For my case study, I created three deployments, one each for these three LLMs:</p><ul><li>gpt-5.2-chat LLM as an example of a Foundry resource</li><li>gpt-5-chat LLM as an example of an Azure OpenAI-only resource</li><li>text-embedding-3-large as an example of an LLM with specific features (I&rsquo;ll use it in a later post on querying with Telerik AI connectors).</li></ul><h3 id="creating-a-deployment">Creating a Deployment</h3><p>To create your deployment, at the top of the page, click the button labeled &ldquo;Use this model.&rdquo; That will display a dialog where you can customize the LLM you&rsquo;ve chosen, including giving your deployment a name (your deployment&rsquo;s name will default to the name of your LLM). Click on the button at the bottom of the page labeled &ldquo;Create resource and deploy&rdquo; &hellip; and then be patient because this can take a moment.</p><p>After your deployment is created with your selected LLM:</p><ul><li>In a Foundry resource, you&rsquo;ll be taken to the page describing your deployment.</li><li>In an OpenAI-only resource, you&rsquo;ll be taken to an Overview page. In the menu on the left, click on the Models + endpoints node to open a list of your deployments. Select the deployment you just created to be taken to the page describing your deployment.</li></ul><p>Once you&rsquo;re on your deployment&rsquo;s page, you need three required pieces of information from the page to use in your application and one optional piece:</p><ul><li>Name: Displayed at the top of the page.</li><li>Authentication information: Your deployment will default to Key authentication, which is fine for a proof-of-concept application (you can switch to Entra Id authentication for production, but the code to access your resource will get more complicated). Assuming that you stick with Key Authentication, copy the Key provided on this page.</li><li>URL: At the top of your deployment&rsquo;s page, find the Target Uri and copy the first segment of the URL provided (i.e., everything from the &ldquo;https://&rdquo; and up to, but not including, the first forward slash in the URL).</li><li>Version: Depending on how you intend to use your LLM, you may not need this, but it does no harm to grab it now. Again, the easiest place to get this is from the sample code. Look for the string put in the variable called api-version (it will look like a date, e.g., &ldquo;2025-12-01&rdquo;).</li></ul><h3 id="returning-to-your-deployment">Returning to Your Deployment</h3><p>To return to your resource or your model, first surf to <a target="_blank" href="http://ai.azure.com">ai.azure.com</a> and sign in. This portal is, currently, in the process of migrating to a new UI, so:</p><ul><li>If you get the &ldquo;old&rdquo; UI then, you may get a list of Foundry and Open AI resources. If so, pick the resource you want to go to the resource&rsquo;s page. On the other hand, you may just be taken directly to one of your resources. Either way, in the menu on the left, select the Models + endpoints node to see a list of your deployments.</li><li>If you <em>don&rsquo;t</em> get that list of your resources &hellip; well, then you&rsquo;re probably in the new UI and, at this point, I&rsquo;d recommend using the toggle at the top of the page to return to the old UI so you can follow along.</li></ul><p>You have more to do to create your own custom RAG-enabled AI agent (load your own content, for example). But if all you want is an application that integrates an AI prompt, you&rsquo;ve done everything you need to support that. You just need to create a frontend that lets the user query your LLM&rsquo;s deployment. The Telerik AI Prompt will let you do that with minimum effort. I&rsquo;ll cover that after showing how to set up the client-side option with Ollama.</p><h2 id="setting-up-ollama">Setting Up Ollama</h2><p>To implement the client-side option, you first need to <a target="_blank" href="https://ollama.com/download/windows">download Ollama</a> and install it. To confirm that Ollama installed successfully, open a command window and enter <code>ollama</code>. You should get back a list of Ollama commands.</p><p>You next need to add the LLM you want to use to Ollama. To do that, open a command window and use Ollama&rsquo;s <code>pull</code> command to install one of the LLMs from the <a target="_blank" href="https://ollama.com/library">Ollama registry</a>. This command installs OpenAI&rsquo;s <a target="_blank" href="https://openai.com/index/introducing-gpt-oss/">gpt-oss</a> LLM:</p><pre class=" language-ollama"><code class="prism  language-ollama">ollama pull gpt-oss
</code></pre><p>After using the <code>pull</code> command, you can use Ollama&rsquo;s <code>list</code> command (which displays the installed LLMs) to confirm your installation.</p><p>The Ollama server <em>should</em> start automatically after installation (and after every reboot) and <em>should</em> be listening on port 11434 on localhost. You can confirm that by using Ollama&rsquo;s <code>serve</code> command. If server isn&rsquo;t running, it will start and report the address the server is listening on. If the server is already running, you&rsquo;ll get an error message that includes address that Ollama is listening on.</p><p>Make a note of the address (probably http://localhost:11434) and the name of the LLM you installed&mdash;you&rsquo;ll need both in your code.</p><p>I&rsquo;m building up to a creating a custom AI agent over this series of posts. But, at this point, you&rsquo;ve done everything you need to create an application with an AI prompt&mdash;it&rsquo;s just a matter of adding a frontend to your LLM.</p><h2 id="adding-a-front-end">Adding a Front End</h2><p>In my next posts, I&rsquo;ll use Telerik Document Processing Library tools to create applications that allow users to apply AI to documents. However, once you&rsquo;ve created an LLM deployment, you can tie that deployment into your application&rsquo;s UI with a few lines of code in your application&rsquo;s Program.cs file and then query your LLM through the Telerik AI Prompt component in your application&rsquo;s UI.</p><p>To do that in a .NET 8 or later application, you first need to add the Microsoft.Extensions.AI.OpenAI NuGet package to your application. After that, you need to tie your model into your application by adding the following code to your application&rsquo;s Program.cs file, inserting the information about your LLM that you gathered from your deployment&rsquo;s information page.</p><p>For either of my Foundry or OpenAI-only options that code looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">builder<span class="token punctuation">.</span>Services<span class="token punctuation">.</span><span class="token function">AddSingleton</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">AzureOpenAIClient</span><span class="token punctuation">(</span>
     <span class="token keyword">new</span> <span class="token class-name">Uri</span><span class="token punctuation">(</span>&ldquo;<span class="token operator">&lt;</span>url<span class="token operator">&gt;</span>&rdquo;<span class="token punctuation">)</span><span class="token punctuation">,</span>
     <span class="token keyword">new</span> <span class="token class-name">AzureKeyCredential</span><span class="token punctuation">(</span>&ldquo;<span class="token operator">&lt;</span>key<span class="token operator">&gt;</span>&rdquo;<span class="token punctuation">)</span>
 <span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
builder<span class="token punctuation">.</span>Services<span class="token punctuation">.</span><span class="token function">AddChatClient</span><span class="token punctuation">(</span>services <span class="token operator">=</span><span class="token operator">&gt;</span> 
         services<span class="token punctuation">.</span><span class="token generic-method function">GetRequiredService<span class="token punctuation">&lt;</span>AzureOpenAIClient<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span><span class="token punctuation">)</span>
            <span class="token punctuation">.</span><span class="token function">GetChatClient</span><span class="token punctuation">(</span><span class="token operator">&lt;</span>deployment name<span class="token operator">&gt;</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">AsIChatClient</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>For Ollama, in addition to adding the Microsoft.Extensions.AI.OpenAI NuGet package, you&rsquo;ll also need to add the OllamaSharp and Microsoft.SemanticKernel.Connectors.Ollama packages. After that, this single line of code will integrate Ollama into your application:</p><pre class=" language-csharp"><code class="prism  language-csharp">builder<span class="token punctuation">.</span>Services<span class="token punctuation">.</span><span class="token generic-method function">AddSingleton<span class="token punctuation">&lt;</span>IChatClient<span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span>
    sp <span class="token operator">=</span><span class="token operator">&gt;</span> <span class="token keyword">new</span> <span class="token class-name">OllamaApiClient</span><span class="token punctuation">(</span><span class="token string">"&lt;Ollama address&gt;"</span><span class="token punctuation">,</span> <span class="token string">"&lt;model name&gt;"</span><span class="token punctuation">)</span>
<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>Your last step is to add the Telerik AIPrompt to your application&rsquo;s UI (available in <a target="_blank" href="https://www.telerik.com/design-system/docs/components/aiprompt/">JavaScript for Kendo UI</a>, <a target="_blank" href="https://www.telerik.com/blazor-ui/documentation/components/aiprompt/overview">Blazor</a>, <a target="_blank" href="https://www.telerik.com/products/aspnet-ajax/ai-prompt.aspx">ASP.NET AJAX</a>, <a target="_blank" href="https://www.telerik.com/products/winforms/aiprompt.aspx">WinForms</a> and <a target="_blank" href="https://www.telerik.com/maui-ui/aiprompt">.NET MAUI</a>). That can be as simple as this in an application that supports Razor (e.g., ASP.NET or Blazor):</p><pre class=" language-razor"><code class="prism  language-razor">&lt;TelerikAIPrompt/&gt;
</code></pre><p>And that would give you this UI:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/ai-ui-1-combined.png?sfvrsn=5736fd30_2" alt="The basic AI Prompt display showing a textbox with a “Generate” button underneath it. Above the textbox are two additional buttons: “Ask AI” and “Output”" /></p><p>In a JavaScript application, you&rsquo;ll need to add a <code>&lt;div&gt;</code> element, set the element&rsquo;s <code>id</code> attribute, and write a couple lines of JavaScript code. I&rsquo;ll cover that in a later post in this series.</p><p>You can now start your application, enter a prompt into the AIPrompt component (e.g., &ldquo;Tell me about RAG-enabled AI applications&rdquo;) and get a response.</p><p>There&rsquo;s obviously far more that you can do with the AI Prompt &hellip; and I&rsquo;ll return to that after my next post. Before that, however, I&rsquo;m going to roll in Telerik Document Processing Library to let you load the content for your custom AI agent. <a href="https://www.telerik.com/blogs/creating-custom-ai-agent-telerik-tools-2-loading-accessing-agent-content" target="_blank"><strong>Read Part 2!</strong></a></p><hr /><p>Explore Telerik Document Processing Libraries, plus component libraries, reporting and more with a free trial of the Telerik DevCraft bundle:</p><p><a href="https://www.telerik.com/download" class="Btn" target="_blank">Try DevCraft</a></p><img src="https://feeds.telerik.com/link/23068/17315466.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:88e4a370-d2a2-4d78-ae1f-86792f7c61e1</id>
    <title type="text">Loading, Accessing and Converting Office and PDF Documents with Telerik Document Processing Libraries</title>
    <summary type="text">Here’s what you need to get started with Telerik Document Processing Libraries to work with PDF, Word and Excel files (and, like any good suite, make all those document types look very much alike).</summary>
    <published>2026-03-31T15:30:52Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Peter Vogel </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17310581/loading-accessing-converting-office-pdf-documents-telerik-document-processing-libraries"/>
    <content type="text"><![CDATA[<p><span class="featured">Here&rsquo;s what you need to get started with Telerik Document Processing Libraries to work with PDF, Word and Excel files (and, like any good suite, make all those document types look very much alike).</span></p><p>Progress Telerik Document Processing Libraries, in addition to letting you work with a variety of document formats (PDF, DOCX, RTF, HTML, XLSX and more), are an example of the reason you buy into a suite of tools: All the tools bear a &ldquo;family resemblance.&rdquo;</p><p>The ideal scenario, of course, would be for a single tool that made all these document formats look the same. Given the differences in format and functionality between, for example, a PDF, a Microsoft Word (or RTF or HTML) document and an Excel spreadsheet, that&rsquo;s not reasonable (though Progress Telerik has achieved that with DOCX, RTF and HTML documents).</p><p>The good news here is that, with Telerik Document Processing Libraries (DPL), the family resemblance is strong enough that, for <em>all</em> of the document types the library supports, I can show you how to load documents, start the editing process, convert between various document types and save a document in this one post.</p><h2 id="configuring-your-project">Configuring Your Project</h2><p>The sample code in this post was all written using the DPL for Windows libraries (even though I was working in ASP.NET Core&mdash;the more technical name for the version I used is &ldquo;.NET(Target OS: Windows).&rdquo; The suite is <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/introduction#required-references">also available for the .NET Framework</a>.</p><p>To create an ASP.NET Core project that would work with &ldquo;all the documents,&rdquo; I added these NuGet packages to my project:</p><ul><li>To work with PDF files: Telerik.Windows.Documents.Fixed</li><li>To work with DOCX, HTML and RTF files: Telerik.Windows.Documents.Flow</li><li>To work with Excel spreadsheets: Telerik.Windows.Documents.Spreadsheet</li></ul><p>For the Excel spreadsheets, I&rsquo;m only going to work with XLSX files, so I added the Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml package to my project. (If I was going to work with, for example, XLS spreadsheet, then I would have added the Telerik.Documents.Spreadsheet.FormatProviders.Xls package.)</p><h2 id="loading-your-document">Loading Your Document</h2><p>The code to load a document from a file into any of these libraries is very similar:</p><ol><li>Create the appropriate provider.</li><li>Use the .NET<code>File</code> object&rsquo;s <code>OpenRead</code> to create a <code>Stream</code> that points to the file.</li><li>Use the provider&rsquo;s <code>Import</code> method to load the stream into the document object.</li></ol><p>Here, for example, is the code to load a PDF file into a <code>RadFixedDocument</code> object (I used this code in an ASP.NET Core application with documents in my project&rsquo;s wwwroot folder):</p><pre class=" language-csharp"><code class="prism  language-csharp">RadFixedDocument doc<span class="token punctuation">;</span>
PdfFormatProvider prov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">@"wwwroot/documents/Priorities.pdf"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    doc <span class="token operator">=</span> prov<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>And here&rsquo;s the code to load a DOCX file into a <code>RadFlowDocument</code>:</p><pre class=" language-c"><code class="prism # language-c">RadFlowDocument doc<span class="token punctuation">;</span>
DocxFormatProvider prov <span class="token operator">=</span> <span class="token function">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

<span class="token function">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span>@<span class="token string">"wwwroot/documents/Priorities.docx"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    doc <span class="token operator">=</span> prov<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>As you can see, the code is identical except for the provider (<code>PdfFormatProvider</code> vs. <code>DocxFormatProvider</code>) and document objects (<code>RadFlowDocument</code> vs. <code>RadFixedDocument</code>).</p><p>Because both RTF and HTML documents load into the same <code>RadFlowDocument</code> object as a DOCX document, only the provider object changes (<code>HtmlFormatProvider</code> or <code>RtfFormatProdiver</code> instead of <code>DocxFormatProvider</code>) when working with those file formats. Here&rsquo;s the code to load an RTF document:</p><pre class=" language-csharp"><code class="prism  language-csharp">RadFlowDocument doc<span class="token punctuation">;</span>
RtfFormatProvider prov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">@"wwwroot/documents/Priorities.rtf"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    doc <span class="token operator">=</span> prov<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>And here&rsquo;s the almost identical code to load an HTML file:</p><pre class=" language-csharp"><code class="prism  language-csharp">RadFlowDocument doc<span class="token punctuation">;</span>
HtmlFormatProvider prov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">@"wwwroot/documents/Priorities.html"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    doc <span class="token operator">=</span> prov<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>The code to load an Excel workbook is also similar to what you&rsquo;ve seen before, just swapping in a new document object (<code>Workbook</code>) and provider (<code>XlsxFormatProvider</code>):</p><pre class=" language-csharp"><code class="prism  language-csharp">Workbook doc<span class="token punctuation">;</span>
XlsxFormatProvider prov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">@"wwwroot/documents/priority.xlsx"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    doc <span class="token operator">=</span> prov<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>A note: The Workbook object assumes that you&rsquo;re going to load the <em>whole</em> Excel workbook into memory. For very large workbooks, that may not make sense. For that scenario, you should look at the <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radspreadstreamprocessing/overview">SpreadStreamProcessing Library</a>.</p><h2 id="modifying-the-documents">Modifying the Documents</h2><p>Once you&rsquo;ve loaded the documents, you can start working with them. You can often simplify your code by using the <code>RadFixedDocumentEditor</code> with PDF documents or the <code>RadFlowDocumentEditor</code>with Word/RTF/HTML documents. Not surprisingly, the code for creating an editor is almost identical for these two document types: create an editor object and pass the document you want loaded into the editor.</p><p>The code to create an editor for a PDF document looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">RadFixedDocumentEditor editor <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">RadFixedDocumentEditor</span><span class="token punctuation">(</span>doc<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>The code for Word/RTF/HTML documents looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">RadFlowDocumentEditor editor <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">RadFlowDocumentEditor</span><span class="token punctuation">(</span>doc<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>That&rsquo;s not to say that, as you start working with those documents, there aren&rsquo;t going to be differences. These are, after all, very different kinds of documents. Having said that, some functionality does work in a similar way across all the document types.</p><p>If, for example, I want to search a PDF document for the text &ldquo;ASP.NET,&rdquo; I create a <code>TextSearch</code> instance from my document object. I then use the <code>TextSearch</code> object&rsquo;s <code>FindAll</code> method to search for text in my PDF document, passing two things: my search text and a <code>TextSearchOptions</code> object that specifies how I want my search conducted. That <code>FindAll</code> object returns a collection of <code>SearchResult</code> objects that I can loop through.</p><p>Typical code, then, looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">TextSearch search <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">TextSearch</span><span class="token punctuation">(</span>doc<span class="token punctuation">)</span><span class="token punctuation">;</span>
TextSearchOptions opts <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span>
CaseSensitive <span class="token operator">=</span> <span class="token keyword">false</span><span class="token punctuation">,</span>
WholeWordsOnly <span class="token operator">=</span> <span class="token keyword">true</span><span class="token punctuation">,</span>
UseRegularExpression <span class="token operator">=</span> <span class="token keyword">true</span>
                                                              <span class="token punctuation">}</span><span class="token punctuation">;</span>

IEnumerable<span class="token operator">&lt;</span>SearchResult<span class="token operator">&gt;</span> items <span class="token operator">=</span> search<span class="token punctuation">.</span><span class="token function">FindAll</span><span class="token punctuation">(</span><span class="token string">"ASP.NET"</span><span class="token punctuation">,</span> opts<span class="token punctuation">)</span><span class="token punctuation">;</span>

Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found {items.Count()} items."</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">foreach</span> <span class="token punctuation">(</span>SearchResult item <span class="token keyword">in</span> items<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found at {item.Range.StartPosition} "</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found: {item.Result}"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>The process is almost identical for the <code>RadFlowDocument</code> object, except:</p><ul><li>You call the <code>FindAll</code>method directly from the <code>RadFlowDocumentEditor</code>.</li><li>There isn&rsquo;t a separate options object (though all the search options from the <code>TextSearch</code> object are still available).</li><li>The <code>FindAll</code> method on the editor returns <code>FindResult</code> objects instead of <code>SearchResult</code> objects.</li></ul><p>As a result, the equivalent search code for a DOCX, RTF or HTML document looks like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">RadFlowDocumentEditor editor <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">RadFlowDocumentEditor</span><span class="token punctuation">(</span>doc<span class="token punctuation">)</span><span class="token punctuation">;</span>

IEnumerable<span class="token operator">&lt;</span>FindResult<span class="token operator">&gt;</span> items <span class="token operator">=</span> editor<span class="token punctuation">.</span><span class="token function">FindAll</span><span class="token punctuation">(</span><span class="token string">"ASP.NET"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found {items.Count()} items."</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">foreach</span> <span class="token punctuation">(</span>FindResult item <span class="token keyword">in</span> items<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found at {item.RelativeStartIndex} "</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found: {item.FullMatchText}"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>Searching a spreadsheet works similarly. The differences:</p><ul><li>The <code>FindAll</code> method is built right into the <code>Workbook</code> object.</li><li>You have more search options available with the spreadsheet object.</li><li>You pass your search string as part of the options object.</li></ul><p>My find code with a workbook would look like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">FindOptions opts <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span>
FindWhat <span class="token operator">=</span> <span class="token string">"ASP.NET"</span><span class="token punctuation">,</span>
MatchCase <span class="token operator">=</span> <span class="token keyword">false</span><span class="token punctuation">,</span>
MatchEntireCellContents <span class="token operator">=</span> <span class="token keyword">true</span><span class="token punctuation">,</span>
                                                <span class="token punctuation">}</span><span class="token punctuation">;</span>

IEnumerable<span class="token operator">&lt;</span>FindResult<span class="token operator">&gt;</span> items <span class="token operator">=</span> doc<span class="token punctuation">.</span><span class="token function">FindAll</span><span class="token punctuation">(</span>opts<span class="token punctuation">)</span><span class="token punctuation">;</span>

Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found {items.Count()} items."</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">foreach</span><span class="token punctuation">(</span>FindResult item <span class="token keyword">in</span> items<span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found at {item.FoundCell.CellIndex} "</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    Debug<span class="token punctuation">.</span><span class="token function">Print</span><span class="token punctuation">(</span>$<span class="token string">"Found: {item.ResultValue}"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>One note: It is certainly convenient when objects from the different libraries share the same name (like the <code>FindResult</code> object that&rsquo;s defined in both the <code>RadFlowDocument</code> and <code>Workbook</code> libraries). However, if you try to use both <code>FindResult</code> objects in the same code file, the compiler will get confused because the two objects are in different namespaces. In the unlikely case that you&rsquo;re working with both Excel and Word documents in the same code file, you&rsquo;ll have to fully qualify the object names&mdash;something I haven&rsquo;t done in this post.</p><h2 id="saving-your-documents">Saving Your Documents</h2><p>To save your modified documents back to disk, you just need to use the provider&rsquo;s <code>Export</code> method. The code for all the document types is identical:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token string">@"wwwroot/documents/Prioritiesnew.&lt;filetype&gt;"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    prov<span class="token punctuation">.</span><span class="token function">Export</span><span class="token punctuation">(</span>doc<span class="token punctuation">,</span>str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><h2 id="converting-documents">Converting Documents</h2><p>You can convert from one type in the suite to other types and, not surprisingly, the conversion processes look very much alike. As you&rsquo;ve seen before, it often comes down to using the right provider.</p><p>If, for example, you want plain text version of your PDF file, you use the <code>TextFormatProvider</code> object&rsquo;s <code>Export</code> method:</p><pre class=" language-csharp"><code class="prism  language-csharp">TextFormatProvider prov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">string</span> text <span class="token operator">=</span> prov<span class="token punctuation">.</span><span class="token function">Export</span><span class="token punctuation">(</span>doc<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>For Word/HTML/RTF document types, the code is almost identical except it uses the <code>TxtFormatProvider</code> object:</p><pre class=" language-csharp"><code class="prism  language-csharp">TxtFormatProvider txProv <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token keyword">string</span> text <span class="token operator">=</span> prov<span class="token punctuation">.</span><span class="token function">Export</span><span class="token punctuation">(</span>doc<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>            
</code></pre><p>One note: There is a downside to having the classes that do similar things to different document types have the same name. If you are mixing document types and, as a result, using the Fixed, Flow and spreadsheet libraries in the same application, the compiler can get confused about which class from which library you&rsquo;re using. If so, you&rsquo;ll have to <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/knowledge-base/cs0104-error-pdf-format-provider">fully qualify your class names</a> by including their namespaces in the class names. That makes for hard-to-read code, so I haven&rsquo;t done that here.</p><p>But, as an example of how different documents require different functionality, you probably wouldn&rsquo;t ever want to convert an Excel workbook to a string &hellip; but you might want to save your workbook as a CSV file. As you might expect by now, the code to save your imported workbook into a CSV file just means using the <code>Export</code> method on the appropriate provider&mdash;the <code>CsvFormatProvider</code> object in this case.</p><p>Typical code would look like this:</p><pre class=" language-csharp"><code class="prism  language-csharp">CsvFormatProvider prov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream str <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span><span class="token string">"Priority.csv"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    prov<span class="token punctuation">.</span><span class="token function">Export</span><span class="token punctuation">(</span>doc<span class="token punctuation">,</span> str<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p><a target="_blank" href="https://www.telerik.com/blogs/quick-and-easy-conversion-to-pdf-with-telerik-document-processing-library">Converting any of these document types (Excel, Word, HTML, etc.) to PDF</a> is equally straightforward. Because all the libraries look very much alike, it&rsquo;s really just a matter of adding the library with the provider you need.</p><p>But you can also convert your <code>Workbook</code> object into a <code>RadFixedDocument</code> if you wanted to manipulate your spreadsheet as a PDF object. That conversion is handled by the PdfFormatProvider from the Telerik.Windows.Documents.Spreadsheet.Formatproviders.Pdf package and using its <code>ExportToFixedDocument</code>method:</p><pre class=" language-csharp"><code class="prism  language-csharp">PdfFormatProvider prov <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

RadFixedDocument fixedDoc <span class="token operator">=</span> 
        prov<span class="token punctuation">.</span><span class="token function">ExportToFixedDocument</span><span class="token punctuation">(</span>doc<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>The code is identical if you want to convert a Word/RTF/HTML document to a <code>RadFixedDocument</code> to work with it as a PDF file. That conversion also uses a <code>PdfFormatProvider</code> object but, this time, from the Telerik.Windows.Documents.Flow.FormatProviders.Pdf namespace.</p><p>But, because the providers from the two libraries have the same name, if you&rsquo;re using both libraries in the same code file, you will need to fully qualify your provider names to make sure you&rsquo;re getting the appropriate <code>PdfFormatProvider</code>.</p><p>Of course, once you start using these tools to create or modify the documents you&rsquo;ve loaded, you&rsquo;ll find more differences&mdash;the functionality in a spreadsheet is very different from the functionality in an HTML document. But, while the family resemblances among this suite won&rsquo;t eliminate those differences, it does cut those differences down to what matters: how those documents differ in their functionality. Which is, after all, what you want.</p><hr /><p>Explore Telerik Document Processing Libraries, plus component libraries, reporting and more with a free trial of the Telerik DevCraft bundle:</p><p><a href="https://www.telerik.com/download" class="Btn" target="_blank">Try DevCraft</a></p><img src="https://feeds.telerik.com/link/23068/17310581.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:e8b28332-cf1c-4070-922f-b179f6ca712e</id>
    <title type="text">Stop Paying for the Same Answer Twice: Agent Cache in Fiddler Everywhere</title>
    <summary type="text">Agent Caching in Fiddler Everywhere allows you to iterate as you build an agent without having to pay for every response when it hasn’t changed.</summary>
    <published>2026-03-17T16:34:30Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Nikolay Iliev </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17301015/stop-paying-same-answer-twice-agent-cache-fiddler-everywhere"/>
    <content type="text"><![CDATA[<p><span class="featured">Agent Caching in Fiddler Everywhere allows you to iterate as you build an agent without having to pay for every response when it hasn&rsquo;t changed.</span></p><p>If you have ever built a model-powered agent, you know the development loop. Write some code, fire it at the endpoint, check the response, tweak the parsing, fire it again. Repeat until the output looks right. It is a perfectly normal workflow&mdash;and it quietly drains your token budget with every single iteration.</p><p>The new Progress Telerik <a target="_blank" href="https://www.telerik.com/fiddler/fiddler-everywhere/documentation/agent-cache">Fiddler Everywhere <strong>Agent Cache</strong></a> feature is designed to break that cycle. Once you capture a response from a model-provider endpoint, you can flip a single switch and have Fiddler software replay that response for every subsequent matching call&mdash;without the request ever leaving your machine. Same output, zero additional tokens consumed on the provider side.</p><p>This post walks through exactly how that works, using a small open-source demo project to make everything concrete.</p><h2 id="the-hidden-cost-of-agent-development">The Hidden Cost of Agent Development</h2><p>Building an agent that calls a completion endpoint involves a lot of repetition that has nothing to do with the model itself. You are iterating on:</p><ul><li>How you construct the prompt</li><li>How you parse and validate the structured response</li><li>How you surface the result to the rest of your system</li><li>How your error handling behaves when the response is malformed</li></ul><p>None of those iterations require a new, unique response from the model. You already have a good one from the first call. But unless you manually save the raw response and mock it yourself, every invocation sends a fresh request, and the provider charges for it.</p><p>Once agents move beyond demos, three pressures show up together and stay for the duration of development:</p><ul><li><strong>Cost</strong> &ndash; Repeated runs during development burn budget. For a simple agent that exchanges a few hundred tokens per call, this might feel negligible. But development sessions involve dozens of sequential runs, teams have multiple developers iterating in parallel, and the costs compound quickly.</li><li><strong>Latency</strong> &ndash; Every round trip to the provider stretches the feedback loop. When you are tweaking prompt construction or adjusting response parsing, waiting on a live call each time slows everything down.</li><li><strong>Determinism</strong> &ndash; The same input does not always produce the same output. That variability makes it harder to isolate whether a difference in behavior came from your code change or from the model.</li></ul><p>This is especially visible in teams that build many small, task-specific agents rather than one large agent. Even small per-run costs compound when iteration is constant&mdash;and none of that spend actually improves the agent.</p><h2 id="what-teams-already-do">What Teams Already Do</h2><p>Most teams already compensate for this manually. Common patterns include separating development runs from real execution, validating agent wiring before triggering model calls, reusing mocked or previously captured responses, and avoiding live execution early to keep iteration fast.</p><p>These approaches work, but they are fragmented. Provider-level caching helps in some cases but is limited. Custom mocks and fixtures are costly to maintain. Replay logic often lives outside the main development flow, and different teams end up solving the same problem with different local tooling.</p><p>The problem is not a lack of solutions. It is the lack of a low-friction one that fits naturally into everyday iteration.</p><h2 id="what-agent-cache-does">What Agent Cache Does</h2><p>Fiddler Everywhere acts as a proxy that sits between your agent and the remote endpoint. When your agent makes an HTTPS call to, say, api.anthropic.com, Fiddler software intercepts it, forwards it and logs the full request-response pair in the <strong>Traffic</strong> pane.</p><p>The new <strong>Agent Calls</strong> tab is a focused view inside that pane. It automatically filters and displays HTTPS sessions that target supported model-provider endpoints&mdash;such as OpenAI, Anthropic and Gemini&mdash;so you are not wading through noise from other traffic. Every captured call gets a <strong>Caching</strong> toggle.</p><p>Enable the toggle, and Fiddler software starts intercepting any outbound call that matches that session&rsquo;s request. Instead of forwarding the request, it immediately returns the cached response. The endpoint never receives the duplicate call. Your agent sees the exact same payload it would have received from a live call. Token count: zero.</p><p>Disable the toggle at any time and live traffic resumes, no restarts required.</p><h3 id="how-agent-calls-and-caching-behave">How Agent Calls and Caching Behave</h3><p>A few details that matter when you start using it:</p><ul><li><strong>Deterministic filtering:</strong> Sessions appear in <strong>Agent Calls</strong> automatically when Fiddler software detects traffic to a supported agentic endpoint. You do not need to configure which endpoints to watch.</li><li><strong>First-match caching:</strong> If two or more sessions target the same endpoint (for example, https://api.anthropic.com/v1/messages) and both are cached, Fiddler software returns the response from the first cached session.</li><li><strong>No rule interference:</strong> Fiddler rules are executed only for non-cached sessions. Cached responses are returned as-is, without rule evaluation.</li><li><strong>Visibility split:</strong> After a session is cached, subsequent matching requests appear only in <strong>Live Traffic</strong>. The <strong>Agent Calls</strong> tab continues to show the original non-cached captures.</li></ul><h2 id="why-it-matters-during-development">Why It Matters During Development</h2><p>Agent Cache is built around three practical benefits that matter most during active development.</p><ol><li><strong>Faster iterations:</strong> Replaying a cached response is instant. Instead of waiting on a round trip to the provider on every run, you get a result back immediately&mdash;shortening the feedback loop so you can move through prompt and code changes without unnecessary delays.</li><li><strong>Lower execution costs:</strong> Each cached run consumes zero tokens on the provider side. During active development, where the same request may be triggered dozens of times, this directly reduces the token spend that accumulates before a feature is even complete.</li><li><strong>More predictable behavior:</strong> A cached response is fixed and repeatable. Running the same agent logic against the same response on every iteration makes it straightforward to verify that a code change had the intended effect, without having to account for variability in live model output.</li></ol><h2 id="demo-bug-report-analyzer">Demo: Bug Report Analyzer</h2><p>To make this tangible, walk through the <a target="_blank" href="https://github.com/NickIliev/agent-cache-demo">agent-cache-demo</a>&mdash;a minimal Python agent that takes a fixed bug report and returns a structured analysis (severity, category, a plain-English summary and a suggested next step).</p><p>The input never changes between runs, which makes it a perfect showcase for Agent Cache: the model&rsquo;s answer to an identical prompt is always reusable, so there is genuinely no reason to pay for it more than once.</p><h3 id="what-the-agent-does">What the Agent Does</h3><p>The core of agent.py is straightforward:</p><pre class=" language-python"><code class="prism  language-python">message <span class="token operator">=</span> client<span class="token punctuation">.</span>messages<span class="token punctuation">.</span>create<span class="token punctuation">(</span>  
model<span class="token operator">=</span>MODEL<span class="token punctuation">,</span>  
max_tokens<span class="token operator">=</span><span class="token number">256</span><span class="token punctuation">,</span>  
system<span class="token operator">=</span>SYSTEM_PROMPT<span class="token punctuation">,</span>  
messages<span class="token operator">=</span><span class="token punctuation">[</span>  
<span class="token punctuation">{</span><span class="token string">"role"</span><span class="token punctuation">:</span> <span class="token string">"user"</span><span class="token punctuation">,</span> <span class="token string">"content"</span><span class="token punctuation">:</span> f<span class="token string">"Analyze this bug report:\n\n{report}"</span><span class="token punctuation">}</span>  
<span class="token punctuation">]</span><span class="token punctuation">,</span>  
<span class="token punctuation">)</span>  
</code></pre><p>It sends the bug report to the Claude API and expects a JSON response like this:</p><pre class=" language-json"><code class="prism  language-json"><span class="token punctuation">{</span>  
<span class="token string">"severity"</span><span class="token punctuation">:</span> <span class="token string">"high"</span><span class="token punctuation">,</span>  
<span class="token string">"category"</span><span class="token punctuation">:</span> <span class="token string">"crash"</span><span class="token punctuation">,</span>  
<span class="token string">"summary"</span><span class="token punctuation">:</span> <span class="token string">"App crashes with a NullPointerException when attempting to log in under no network connectivity."</span><span class="token punctuation">,</span>  
<span class="token string">"suggested_next_step"</span><span class="token punctuation">:</span> <span class="token string">"Add a null or connectivity check in NetworkManager.checkConnectivity() before network calls."</span>  
<span class="token punctuation">}</span>  
</code></pre><p>That response is then formatted and printed to the terminal:</p><pre><code>── Bug Report Analysis ─────────────────────────────────────  
Severity  : HIGH  
Category  : crash  
Summary  : App crashes with a NullPointerException when attempting to  
log in under no network connectivity.  
Next step : Add a null or connectivity check in  
NetworkManager.checkConnectivity() before network calls.  
─────────────────────────────────────  
</code></pre><h3 id="setup">Setup</h3><p>Clone the repository and install dependencies:</p><pre><code>git clone [https://github.com/NickIliev/agent-cache-demo](https://github.com/NickIliev/agent-cache-demo)  
cd agent-cache-demo  
  
python -m venv .venv  
source .venv/bin/activate  # macOS / Linux  
.venv\Scripts\activate  # Windows  
  
pip install -r requirements.txt  
export ANTHROPIC_API_KEY=sk-ant-... # macOS / Linux (Git Bash)  
set ANTHROPIC_API_KEY=sk-ant-... # Windows (CMD)  
</code></pre><p>The demo supports routing traffic through the Fiddler proxy or running directly against the provider. It also covers SSL/TLS trust configuration for HTTPS interception. See the <a target="_blank" href="https://github.com/NickIliev/agent-cache-demo#readme">repository README</a> for full details on proxy setup, environment variables and certificate options.</p><h3 id="step-1-the-first-live-call">Step 1: The First Live Call</h3><p>Start Fiddler Everywhere and run the agent:</p><pre><code>python agent.py  
</code></pre><p>The terminal shows the result and, crucially, the token consumption:</p><pre><code>[tokens] Input: 312  |  Output: 68  |  Total: 380  
</code></pre><p>Switch to Fiddler Everywhere and open <strong>Traffic &gt; Agent Calls</strong>. You will see the captured call to api.anthropic.com with the full request and response visible.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/agent-call-request-response.png?sfvrsn=ba602a35_2" alt="Fiddler Everywhere Traffic Agent Calls shows the captured call to api.anthropic.com with the full request and response." /></p><p>This is your baseline. You paid for 380 tokens. That is fair&mdash;you needed the live call to validate the end-to-end flow.</p><h3 id="step-2-enable-the-cache">Step 2: Enable the Cache</h3><p>In the <strong>Agent Calls</strong> grid, find the captured session and flip its <strong>Caching</strong> switch to on. That is the entire configuration step.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/agent-calls-caching-on.png?sfvrsn=73826575_2" alt="Fiddler Everywhere Agent Calls has caching toggled on" /></p><h3 id="step-3-all-subsequent-runs-are-free">Step 3: All Subsequent Runs Are Free</h3><p>Run the agent again:</p><pre><code>python agent.py  
</code></pre><p>The output in the terminal is byte-for-byte identical to the first run, including the token count display. Because the <strong>Caching</strong> switch was on, Fiddler software served the stored response immediately and never forwarded the request to the provider. The endpoint never saw the call.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/fiddler-caching-stored-response.png?sfvrsn=f8736f5c_2" alt="Fiddler caching stored response immediately and never forwarded the request to the provider." /></p><p>You can now iterate on agent.py as many times as you need&mdash;refactor the display logic, adjust the JSON parsing, add logging&mdash;and none of those runs cost a single token.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/claude-console.png?sfvrsn=434925d4_2" alt="On the Claude Console: Only the first call was received by the provider. All sequential calls were successfully cached by Fiddler and were not taxed." /></p><h2 id="when-to-use-agent-cache">When to Use Agent Cache</h2><p>Agent Cache is a development-stage tool. It is particularly valuable when:</p><ul><li><strong>Iterating on response handling:</strong> Your agent already returns a correct response from the model. You are now working on how your code handles that response&mdash;formatting, validation, error recovery. None of that work requires fresh model calls.</li><li><strong>Sharing a working state with teammates:</strong> Cache a known-good response and share the Fiddler session. Everyone on the team can iterate against the same replay without burning tokens or depending on network access to the provider.</li><li><strong>Working offline or in restricted environments:</strong> Once the cache is populated, your agent keeps working even without connectivity to the provider.</li></ul><h2 id="things-to-keep-in-mind">Things to Keep in Mind</h2><ul><li><strong>Cache matching is request-based.</strong> If your agent changes the prompt, the model or any request headers, the cached session will no longer match. Capture and cache the updated variant separately.</li><li><strong>The cache lives in the current Fiddler session.</strong> Closing and reopening Fiddler clears the cache state, so the next run after a restart will make a live call. Review cached sessions periodically to keep stored responses aligned with your current workflow.</li><li><strong>Cache is for development, not production.</strong> Agent Cache is designed for development workflows where deterministic, repeatable responses are the goal. When you are ready to validate against a live endpoint, disable the cache and resume live calls.</li></ul><h2 id="availability">Availability</h2><p>Agent Cache is available on Fiddler Everywhere <strong>Trial</strong>, <strong>Pro</strong> and <strong>Enterprise</strong> tiers. The feature is not included in Lite licenses.</p><h2 id="try-it-yourself">Try It Yourself</h2><p>The full demo is on GitHub: <a target="_blank" href="https://github.com/NickIliev/agent-cache-demo">github.com/NickIliev/agent-cache-demo</a>. Clone it, set your Anthropic API key, and you can see the before-and-after token counts yourself in under five minutes.</p><p>The point is not really the 380 tokens saved in a single run. It is the dozens of runs you make in a typical development session, the parallel runs across a team&mdash;all of which can stop paying for answers they already have.</p><p>Agent Cache does not change how you build agents. It just removes the tax on iterating.</p><p>If you aren&rsquo;t already using Fiddler Everywhere, it does come with a free trial:</p><p><a href="https://www.telerik.com/download/fiddler-everywhere" class="Btn" target="_blank">Try Fiddler Everywhere</a></p><h3 id="leave-feedback">Leave Feedback</h3><p>Agent development workflows are still evolving quickly, and your feedback shapes what comes next. If you try Agent Cache during development&mdash;or if there is something you wish it did differently&mdash;we want to hear about it.</p><ul><li>Email: <a href="https://www.telerik.commailto:fiddler-support@progress.com" target="_blank">fiddler-support@progress.com</a></li><li>GitHub issues: <a target="_blank" href="https://github.com/telerik/fiddler-everywhere/issues">github.com/telerik/fiddler-everywhere/issues</a></li><li>Demo repository: <a target="_blank" href="https://github.com/NickIliev/agent-cache-demo">github.com/NickIliev/agent-cache-demo</a></li></ul><img src="https://feeds.telerik.com/link/23068/17301015.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:f3a4d2ee-5d34-4a83-a4de-4e2bf84e0462</id>
    <title type="text">Spreadsheet Analysis with Telerik Document Processing Libraries Agentic Tools</title>
    <summary type="text">Agentic workflows provide dynamic ways to interact with and analyze documents. The Telerik Document Processing Libraries now have these AI tools ready to use!</summary>
    <published>2026-03-04T21:25:50Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Anna Velcheva </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17293376/spreadsheet-analysis-telerik-document-processing-libraries-agentic-tools"/>
    <content type="text"><![CDATA[<p><span class="featured">Agentic workflows provide dynamic ways to interact with and analyze documents. The Progress Telerik Document Processing Libraries now have these AI tools ready to use!</span></p><p>Modern applications rely on automation and intelligent processing to handle large volumes of data, and spreadsheets are no exception. With the <a target="_blank" href="https://www.telerik.com/blogs/next-productivity-leap-telerik-kendo-ui-2026-q1-release">2026 Q1 release</a>, Progress introduced <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/ai-tools/agent-tools/overview">Agentic Tools (in Preview) for Telerik Document Processing Libraries</a> (DPL).</p><p>These tools are purpose‑built .NET APIs for agentic document workflows, enabling AI agents to analyze, extract, edit and generate Excel and PDF files; run aggregates; transform content; and convert formats directly inside your app. The new Agentic Tools cover both PdfProcessing and <a target="_blank" href="https://demos.telerik.com/document-processing/spreadprocessing/agentic_tools">SpreadProcessing</a> libraries and are available with a Subscription license.</p><p>In this post, we&rsquo;ll walk you through how to use the SpreadProcessing Agentic Tools to analyze an existing spreadsheet.</p><h2 id="importing-the-workbook">Importing the Workbook</h2><p>Let&rsquo;s create a simple .NET console app. Our first step is to import the Workbook. I am going to add the <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/getting-started/first-steps">necessary DPL dependencies</a>, in this case:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/dpl-packages.png?sfvrsn=9294b0de_2" alt="DPL packages: Telerik.Windows.Documents.Spreadsheet and Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml" /></p><p>and then use this code:</p><pre class=" language-csharp"><code class="prism  language-csharp">Workbook workbook <span class="token operator">=</span> <span class="token keyword">null</span><span class="token punctuation">;</span>

<span class="token keyword">using</span> <span class="token punctuation">(</span>Stream input <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">"Electric_Vehicle_Population_Data.xlsx"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
<span class="token punctuation">{</span>
    XlsxFormatProvider formatProvider <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
    workbook <span class="token operator">=</span> formatProvider<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>input<span class="token punctuation">,</span> <span class="token keyword">null</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span>
</code></pre><p>In case you are wondering, this file contains 17 columns and 75,331 rows of data.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/spreadsheet-data-glimpse.png?sfvrsn=3fd645a2_2" alt="Screenshot of a spreadsheet with VIN, County, City, State, Postal Code, Model Year, Make, Model, etc." /></p><p>An agent using the DPL tools can work with multiple files at the same time by importing and exporting them via the <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/ai-tools/agent-tools/spreadsheet-document-api#spreadprocessingfilemanagementagenttools">SpreadProcessingFileManagementAgentTools</a> and managing them with the <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/ai-tools/agent-tools/spreadsheet-document-api#repositories">InMemoryWorkbookRepository</a>. However, in this example we are going to concentrate on analyzing one workbook, so we are going to use the SingleWorkbookRepository, a class which gives an agent a single file to work with in memory.</p><pre class=" language-csharp"><code class="prism  language-csharp">IWorkbookRepository repository <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">SingleWorkbookRepository</span><span class="token punctuation">(</span>workbook<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>For this code, we need to reference the Telerik.Documents.AI.AgentTools.Spreadsheet package.</p><h2 id="initializing-the-dpl-agentic-tools">Initializing the DPL Agentic Tools</h2><p>Initializing the Agentic Tools is very simple. For this example, we will use an Azure Open AI deployment, so first we are going to add the <a target="_blank" href="https://learn.microsoft.com/en-us/agent-framework/agents/providers/openai?pivots=programming-language-csharp">Microsoft.Agents.AI.OpenAI</a> and Azure.AI.OpenAI packages. Then we are going to collect the Read and Formula tools in one collection:</p><pre class=" language-csharp"><code class="prism  language-csharp">List<span class="token operator">&lt;</span>AITool<span class="token operator">&gt;</span> tools <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">SpreadProcessingReadAgentTools</span><span class="token punctuation">(</span>repository<span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">GetTools</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">ToList</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
tools<span class="token punctuation">.</span><span class="token function">AddRange</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">SpreadProcessingFormulaAgentTools</span><span class="token punctuation">(</span>repository<span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">GetTools</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>And then we can initialize our agent. We are going to need an Azure Open AI endpoint and key and are going to use gpt-4.1-mini.</p><pre class=" language-csharp"><code class="prism  language-csharp">OpenAI<span class="token punctuation">.</span>Chat<span class="token punctuation">.</span>ChatClient chatClient <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">AzureOpenAIClient</span><span class="token punctuation">(</span>
    <span class="token keyword">new</span> <span class="token class-name">Uri</span><span class="token punctuation">(</span>endpoint<span class="token punctuation">)</span><span class="token punctuation">,</span>
    <span class="token keyword">new</span> <span class="token class-name">ApiKeyCredential</span><span class="token punctuation">(</span>key<span class="token punctuation">)</span><span class="token punctuation">)</span>
    <span class="token punctuation">.</span><span class="token function">GetChatClient</span><span class="token punctuation">(</span>model<span class="token punctuation">)</span><span class="token punctuation">;</span>

AIAgent agent <span class="token operator">=</span> chatClient<span class="token punctuation">.</span><span class="token function">AsIChatClient</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">AsAIAgent</span><span class="token punctuation">(</span>
    instructions<span class="token punctuation">:</span> <span class="token string">""</span><span class="token punctuation">,</span>
    name<span class="token punctuation">:</span> <span class="token string">"SpreadsheetAnalyzer"</span><span class="token punctuation">,</span>
    tools<span class="token punctuation">:</span> tools<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>At this point, we can already ask a simple question to check our progress:</p><pre class=" language-csharp"><code class="prism  language-csharp">AgentResponse response <span class="token operator">=</span> <span class="token keyword">await</span> agent<span class="token punctuation">.</span><span class="token function">RunAsync</span><span class="token punctuation">(</span><span class="token string">"What is the value on cell A4?"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
Console<span class="token punctuation">.</span><span class="token function">WriteLine</span><span class="token punctuation">(</span>response<span class="token punctuation">.</span><span class="token function">ToString</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>Here is the result:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/dpl-question-answered.png?sfvrsn=f1f9444b_2" alt="Window shows text: The value in cell A4 is… Is there anything else you would like to know" /></p><p>If you examine the response of the agent more closely, you will notice that it contains three messages. The first is the function call the agent made to the document processing tool GetCellValues and with what parameters. The second is the response. And the third is what the LLM has reasoned and has decided to give us.</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/dpl-ai-response-messages.png?sfvrsn=5100adde_2" alt="More insight into the DPL AI Agent response" /></p><h2 id="giving-it-ui">Giving It UI</h2><p>A console app is good for a proof of concept, but it would be nice to give our functionality a more finished look. One of the ways to do this is by using some Progress <a target="_blank" href="https://www.telerik.com/products/wpf/overview.aspx">Telerik for WPF</a> controls. The RadSpreadsheet control can show the content of our file, and we can leverage RadChat for the conversation with the agent.</p><p>We can give the repository the Workbook object of the RadSpreadsheet like this when initializing the chat:</p><pre class=" language-csharp"><code class="prism  language-csharp">IWorkbookRepository repository <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">SingleWorkbookRepository</span><span class="token punctuation">(</span><span class="token keyword">this</span><span class="token punctuation">.</span>radSpreadsheet<span class="token punctuation">.</span>Workbook<span class="token punctuation">)</span><span class="token punctuation">;</span>
</code></pre><p>Then we are going to subscribe to the SendMessage event, which is where our logic for running the agent is going to go:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">this</span><span class="token punctuation">.</span>radChat<span class="token punctuation">.</span>SendMessage <span class="token operator">+</span><span class="token operator">=</span> <span class="token keyword">this</span><span class="token punctuation">.</span>RadChat_SendMessage<span class="token punctuation">;</span>
</code></pre><p>After a few more tweaks, this is the result:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2026/2026-03/spreadsheet-ai-agent-initialized.png?sfvrsn=3e11626f_2" alt="Spredsheet with right panel showing the AI Assistant, with AI agent initialized and ready to help with your spreadsheet!" /></p><p>The full code of the demo can be found on this link: <a target="_blank" href="https://github.com/telerik/document-processing-sdk/tree/master/AITools/AgentToolsAnalyzeSpreadsheet">AgentToolsAnalyzeSpreadsheet on GitHub</a></p><h2 id="conclusion">Conclusion</h2><p>Agentic workflows introduce a powerful new way to interact with documents, moving beyond static reading and writing to dynamic, intelligent analysis. As you&rsquo;ve seen, the setup integrates seamlessly with .NET, and, once the agent is initialized, it can leverage the full capabilities of the Document Processing Libraries.</p><p>This example is just the beginning! The same approach can be extended to multi-document scenarios, automated reporting, data validation or even generating new spreadsheets from scratch.</p><p>The future of document processing is agentic, and it&rsquo;s already here.</p><hr /><blockquote><p>Try out the <a target="_blank" href="https://www.telerik.com/document-processing-libraries">Telerik Document Processing Libraries</a>, which are included in the <a target="_blank" href="https://www.telerik.com/devcraft">Telerik DevCraft bundles</a> to pair perfectly with your favorite component libraries.</p><br /><a target="_blank" href="https://www.telerik.com/try/devcraft-ultimate" class="Btn">Try Telerik DevCraft</a>
</blockquote><img src="https://feeds.telerik.com/link/23068/17293376.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:034079bc-0ee8-42e4-a55e-9e6d40c6e8c0</id>
    <title type="text">Cloud Integration with Telerik Document Processing</title>
    <summary type="text">Learn how to integrate Telerik Document Processing with Azure and AWS cloud services, including all the PDF processing you’ll need in a serverless environment.</summary>
    <published>2025-12-17T13:04:00Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Desislava Yordanova </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17236286/cloud-integration-telerik-document-processing"/>
    <content type="text"><![CDATA[<p><span class="featured">Learn how to integrate Telerik Document Processing with Azure and AWS cloud services, including all the PDF processing you&rsquo;ll need in a serverless environment.</span></p><p>Offloading document generation, conversion or manipulation to cloud services allows you to handle large workloads without overloading on-prem resources. Azure Functions and AWS Lambda scale automatically based on demand, so whether you need to generate 10 or 10,000 documents, the infrastructure adjusts dynamically. Serverless models charge per execution time and resources consumed, eliminating the need for dedicated servers for document processing. Thus, you pay only for what you use.</p><p>This blog post introduces comprehensive cloud integration demonstrations for Azure and AWS, showcasing PDF processing capabilities using Progress&nbsp;<a target="_blank" href="https://docs.telerik.com/devtools/document-processing/introduction">Telerik Document Processing</a> in serverless environments. The examples demonstrate two main integration patterns: PDF merging and external digital signing, implemented for both Azure Functions and AWS Lambda. The complete code projects are available in our SDK repository: <a target="_blank" href="https://github.com/telerik/document-processing-sdk/tree/master/CloudIntegration">Cloud Integration Demos</a>.</p><h2 id="integrate-radpdfprocessing-with-azure-functions">Integrate RadPdfProcessing with Azure Functions</h2><p>First, you&rsquo;ll need: an active <a target="_blank" href="https://azure.microsoft.com/en-us">Azure subscription</a>, <a target="_blank" href="https://learn.microsoft.com/en-us/azure/azure-functions/functions-run-local?tabs=windows%2Cisolated-process%2Cnode-v4%2Cpython-v2%2Chttp-trigger%2Ccontainer-apps&amp;pivots=programming-language-csharp">Azure functions tools</a> installed and the <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/getting-started/installation/install-nuget-packages#download-from-the-nuget-server">Telerik NuGet feed</a> set up.</p><ol><li>Create an Azure Functions App</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/azure-functions-app.png?sfvrsn=f131fb5c_2" alt="Create a new project: Azure functions" /></p><ol start="2"><li>Select <em>Anonymous</em> <strong>authorization level</strong>:</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/anonymous-authorization.png?sfvrsn=aafe94b9_2" alt="Additional information – Azure Functions – Authorization level: Anonymous" /></p><ol start="3"><li>Install the following NuGet packages:</li></ol><ul><li>Install the <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/getting-started">Telerik.Documents.Fixed</a> NuGet package.</li><li>Install the <a target="_blank" href="https://www.nuget.org/packages/HttpMultipartParser">HttpMultipartParser</a> NuGet package:</li></ul><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/httpmultipartparser-nuget.png?sfvrsn=e85a6b87_2" alt="NuGet Package Manager: HttpMultipartParser" /></p><ol start="4"><li>Rename the Functiona1.cs file to &ldquo;MergeFunction&rdquo; and introduce your custom implementation in the <strong>Run</strong> method:</li></ol><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">using</span> HttpMultipartParser<span class="token punctuation">;</span>
<span class="token keyword">using</span> Microsoft<span class="token punctuation">.</span>Azure<span class="token punctuation">.</span>Functions<span class="token punctuation">.</span>Worker<span class="token punctuation">;</span>
<span class="token keyword">using</span> Microsoft<span class="token punctuation">.</span>Azure<span class="token punctuation">.</span>Functions<span class="token punctuation">.</span>Worker<span class="token punctuation">.</span>Http<span class="token punctuation">;</span>
<span class="token keyword">using</span> System<span class="token punctuation">.</span>Net<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>FormatProviders<span class="token punctuation">.</span>Pdf<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">;</span>
 
<span class="token keyword">namespace</span> MyAzureFunctionApp<span class="token punctuation">;</span>
 
<span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">MergeFunction</span>
<span class="token punctuation">{</span>
    <span class="token punctuation">[</span><span class="token function">Function</span><span class="token punctuation">(</span><span class="token string">"MergeFunction"</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
    <span class="token keyword">public</span> <span class="token keyword">async</span> Task<span class="token operator">&lt;</span>HttpResponseData<span class="token operator">&gt;</span> <span class="token function">Run</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token function">HttpTrigger</span><span class="token punctuation">(</span>AuthorizationLevel<span class="token punctuation">.</span>Anonymous<span class="token punctuation">,</span> <span class="token string">"get"</span><span class="token punctuation">,</span> <span class="token string">"post"</span><span class="token punctuation">)</span><span class="token punctuation">]</span> HttpRequestData req<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        Task<span class="token operator">&lt;</span>MultipartFormDataParser<span class="token operator">&gt;</span> parsedFormBody <span class="token operator">=</span> MultipartFormDataParser<span class="token punctuation">.</span><span class="token function">ParseAsync</span><span class="token punctuation">(</span>req<span class="token punctuation">.</span>Body<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
        PdfFormatProvider provider <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">PdfFormatProvider</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        RadFixedDocument result <span class="token operator">=</span> <span class="token function">MergePdfs</span><span class="token punctuation">(</span>provider<span class="token punctuation">,</span> parsedFormBody<span class="token punctuation">.</span>Result<span class="token punctuation">.</span>Files<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
        <span class="token keyword">using</span> <span class="token punctuation">(</span>MemoryStream outputStream <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">MemoryStream</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            provider<span class="token punctuation">.</span><span class="token function">Export</span><span class="token punctuation">(</span>result<span class="token punctuation">,</span> outputStream<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">20</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            outputStream<span class="token punctuation">.</span><span class="token function">Seek</span><span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">,</span> SeekOrigin<span class="token punctuation">.</span>Begin<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            HttpResponseData httpResponseData <span class="token operator">=</span> req<span class="token punctuation">.</span><span class="token function">CreateResponse</span><span class="token punctuation">(</span>HttpStatusCode<span class="token punctuation">.</span>OK<span class="token punctuation">)</span><span class="token punctuation">;</span>
            httpResponseData<span class="token punctuation">.</span>Headers<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span><span class="token string">"Content-Type"</span><span class="token punctuation">,</span> <span class="token string">"application/pdf"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token keyword">await</span> outputStream<span class="token punctuation">.</span><span class="token function">CopyToAsync</span><span class="token punctuation">(</span>httpResponseData<span class="token punctuation">.</span>Body<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token keyword">return</span> httpResponseData<span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
    <span class="token punctuation">}</span>
 
    <span class="token keyword">static</span> RadFixedDocument <span class="token function">MergePdfs</span><span class="token punctuation">(</span>PdfFormatProvider pdfFormatProvider<span class="token punctuation">,</span> IReadOnlyList<span class="token operator">&lt;</span>FilePart<span class="token operator">&gt;</span> files<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        RadFixedDocument mergedDocument <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">RadFixedDocument</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token keyword">foreach</span> <span class="token punctuation">(</span>FilePart file <span class="token keyword">in</span> files<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            RadFixedDocument documentToMerge <span class="token operator">=</span> pdfFormatProvider<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>file<span class="token punctuation">.</span>Data<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">20</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            mergedDocument<span class="token punctuation">.</span><span class="token function">Merge</span><span class="token punctuation">(</span>documentToMerge<span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
 
        <span class="token keyword">return</span> mergedDocument<span class="token punctuation">;</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span> 
</code></pre><p>This Azure Function, named <code>MergeFunction</code>, handles HTTP GET and POST requests to merge multiple PDF files into a single document. It uses:</p><ul><li><strong>HttpMultipartParser</strong> to parse multipart form data and extract uploaded files.</li><li>Telerik PdfFormatProvider and RadFixedDocument to import and merge PDF documents.</li><li>The merged PDF is exported to a memory stream and returned as an HTTP response with the application/pdf content type.</li></ul><p>The function supports anonymous access and processes uploaded files efficiently, so that the merged PDF is delivered in the response. Since the function is implemented with anonymous access for demo purposes, consider adding authentication as needed for your scenario.</p><ol start="5"><li>Run the project and copy the URL from the window that pops up:</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/mergefunction-get-post-url.png?sfvrsn=fe127b29_2" alt="MergeFunction GET, POST url" /></p><ol start="6"><li>Create a .NET Console App (e.g., MyMergeApp) that acts as a client for the Azure Function PDF Merge service.</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/console-app.png?sfvrsn=8d50fc5f_2" alt="Add a new project – Console App" /></p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">using</span> System<span class="token punctuation">.</span>Diagnostics<span class="token punctuation">;</span>
<span class="token keyword">using</span> System<span class="token punctuation">.</span>Net<span class="token punctuation">.</span>Http<span class="token punctuation">.</span>Headers<span class="token punctuation">;</span>
 
<span class="token keyword">namespace</span> MyMergeApp
<span class="token punctuation">{</span>
    <span class="token keyword">internal</span> <span class="token keyword">class</span> <span class="token class-name">Program</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">static</span> <span class="token keyword">void</span> <span class="token function">Main</span><span class="token punctuation">(</span><span class="token keyword">string</span><span class="token punctuation">[</span><span class="token punctuation">]</span> args<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">string</span> functionUrl <span class="token operator">=</span> <span class="token string">"http://localhost:7163/api/MergeFunction"</span><span class="token punctuation">;</span>
 
            <span class="token comment">// Specify PDF files to merge from the Resources directory</span>
            <span class="token keyword">string</span><span class="token punctuation">[</span><span class="token punctuation">]</span> pdfFilePaths <span class="token operator">=</span> <span class="token punctuation">{</span> <span class="token string">"../../../Resources/file1.pdf"</span><span class="token punctuation">,</span> <span class="token string">"../../../Resources/file2.pdf"</span> <span class="token punctuation">}</span><span class="token punctuation">;</span>
 
            <span class="token comment">// Create multipart form data content for file upload</span>
            <span class="token keyword">using</span> MultipartFormDataContent content <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token comment">// Add each PDF file to the form data</span>
            <span class="token keyword">foreach</span> <span class="token punctuation">(</span><span class="token keyword">string</span> filePath <span class="token keyword">in</span> pdfFilePaths<span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                <span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span> fileBytes <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">ReadAllBytes</span><span class="token punctuation">(</span>filePath<span class="token punctuation">)</span><span class="token punctuation">;</span>
                ByteArrayContent fileContent <span class="token operator">=</span> <span class="token keyword">new</span><span class="token punctuation">(</span>fileBytes<span class="token punctuation">)</span><span class="token punctuation">;</span>
                fileContent<span class="token punctuation">.</span>Headers<span class="token punctuation">.</span>ContentType <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">MediaTypeHeaderValue</span><span class="token punctuation">(</span><span class="token string">"application/pdf"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
                content<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span>fileContent<span class="token punctuation">,</span> <span class="token string">"files"</span><span class="token punctuation">,</span> Path<span class="token punctuation">.</span><span class="token function">GetFileName</span><span class="token punctuation">(</span>filePath<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
 
            <span class="token comment">// Send the merge request to the Azure Function</span>
            HttpResponseMessage response <span class="token operator">=</span> <span class="token function">PostAsync</span><span class="token punctuation">(</span>functionUrl<span class="token punctuation">,</span> content<span class="token punctuation">)</span><span class="token punctuation">.</span>Result<span class="token punctuation">;</span>
            response<span class="token punctuation">.</span><span class="token function">EnsureSuccessStatusCode</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token comment">// Read the merged PDF from the response</span>
            <span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span> result <span class="token operator">=</span> response<span class="token punctuation">.</span>Content<span class="token punctuation">.</span><span class="token function">ReadAsByteArrayAsync</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span>Result<span class="token punctuation">;</span>
 
            <span class="token comment">// Save the merged PDF to disk</span>
            <span class="token keyword">string</span> outputPath <span class="token operator">=</span> <span class="token string">"merged_output.pdf"</span><span class="token punctuation">;</span>
            <span class="token keyword">if</span> <span class="token punctuation">(</span>File<span class="token punctuation">.</span><span class="token function">Exists</span><span class="token punctuation">(</span>outputPath<span class="token punctuation">)</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                File<span class="token punctuation">.</span><span class="token function">Delete</span><span class="token punctuation">(</span>outputPath<span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
            File<span class="token punctuation">.</span><span class="token function">WriteAllBytes</span><span class="token punctuation">(</span>outputPath<span class="token punctuation">,</span> result<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token comment">// Open the merged PDF in the default viewer</span>
            Process<span class="token punctuation">.</span><span class="token function">Start</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">ProcessStartInfo</span><span class="token punctuation">(</span>outputPath<span class="token punctuation">)</span> <span class="token punctuation">{</span> UseShellExecute <span class="token operator">=</span> <span class="token keyword">true</span> <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
        <span class="token keyword">static</span> <span class="token keyword">async</span> Task<span class="token operator">&lt;</span>HttpResponseMessage<span class="token operator">&gt;</span> <span class="token function">PostAsync</span><span class="token punctuation">(</span><span class="token keyword">string</span> url<span class="token punctuation">,</span> MultipartFormDataContent content<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">using</span> HttpClient httpClient <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">HttpClient</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            httpClient<span class="token punctuation">.</span>Timeout <span class="token operator">=</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromMinutes</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token comment">// Allow sufficient time for large files</span>
 
            <span class="token keyword">return</span> <span class="token keyword">await</span> httpClient<span class="token punctuation">.</span><span class="token function">PostAsync</span><span class="token punctuation">(</span>url<span class="token punctuation">,</span> content<span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><p>It demonstrates how to send multiple PDF files to the MergeFunction endpoint and handle the merged result. The workflow includes:</p><ul><li>Loading PDF files from a local <strong>Resources</strong> directory.</li><li>Packaging the files as multipart form data for upload.</li><li>Sending an HTTP POST request to the Azure Function endpoint.</li><li>Receiving the merged PDF in the response and saving it to disk.</li><li>Automatically opening the merged PDF in the system&rsquo;s default viewer.<br />The application uses HttpClient for communication, enables proper content type headers and includes a helper method <code>PostAsync</code> for sending requests with a configurable timeout.</li></ul><ol start="7"><li>Run the Azure Functions .NET Worker (e.g., MyAzureFunctionApp.csproj):</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/run-azure-function-net-worker.png?sfvrsn=8d5b5cd1_2" alt="Run the Azure Functions .NET Worker" /></p><ol start="8"><li>While the service is running, run the Console App (e.g., MyMergeApp).</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/run-console-app.png?sfvrsn=95348a8_2" alt="Running the MyMergeApp console app" /></p><p>As a result, a merged PDF document will be produced:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/merged-pdf.png?sfvrsn=a29eb92e_2" alt="Merged PDF" /></p><h2 id="integrate-radpdfprocessing-with-aws-lambda">Integrate RadPdfProcessing with AWS Lambda</h2><p>Using an AWS Lambda function for signing PDF documents offers a more secure, scalable and cost-effective approach to digital signature workflows. By offloading the signing process to a serverless environment, sensitive private keys remain isolated in the cloud, reducing the risk of exposure on client machines.</p><p>The following tutorial defines the steps for creating an AWS Lambda function that performs digital signature operations for PDF documents using a private key stored in a certificate file. The AWS Lambda function is purposed to act as a more secure service that remotely signs PDF documents, and the private key is never exposed to the client.</p><p>Before starting, you&rsquo;ll need valid <a target="_blank" href="https://docs.aws.amazon.com/toolkit-for-visual-studio/latest/user-guide/keys-profiles-credentials.html">AWS Credentials</a> and the <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/getting-started/installation/telerik-nuget-source">Telerik NuGet Feed</a> properly set up.</p><ol><li>Create AWS Lambda Project (e.g., MyAWSLambda):</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/lambda-project.png?sfvrsn=cb93aa7a_2" alt="Create a new project – Lambda Project" /></p><ol start="2"><li>From the <em>Select Blueprint</em> wizard, select &ldquo;.NET 8 (Container Image)&rdquo;:</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/net-8-container-image.png?sfvrsn=8f55eed6_2" alt="AWS Select Blueprint - .NET 8 (Container Image)" /></p><ol start="3"><li>Open the Function.cs file and implement the custom logic for signing PDF documents in the FunctionHandler:</li></ol><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/lambda-function.png?sfvrsn=b8dd76f_2" alt="MyAWSLambda – Function.cs" /></p><p>The method receives data to be signed, signs it using a <strong>private</strong> key certificate, and returns the Base64-encoded signature. The .pfx certificate is stored independently from the project used for processing documents.</p><p>NOTE: Do not forget that sensitive data should be stored properly and that this implementation is for demo purposes.</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">using</span> Amazon<span class="token punctuation">.</span>Lambda<span class="token punctuation">.</span>Core<span class="token punctuation">;</span>
<span class="token keyword">using</span> System<span class="token punctuation">.</span>Security<span class="token punctuation">.</span>Cryptography<span class="token punctuation">;</span>
<span class="token keyword">using</span> System<span class="token punctuation">.</span>Security<span class="token punctuation">.</span>Cryptography<span class="token punctuation">.</span>X509Certificates<span class="token punctuation">;</span>
 
<span class="token comment">// Assembly attribute to enable the Lambda function's JSON input to be converted into a .NET class.</span>
<span class="token punctuation">[</span>assembly<span class="token punctuation">:</span> <span class="token function">LambdaSerializer</span><span class="token punctuation">(</span><span class="token keyword">typeof</span><span class="token punctuation">(</span>Amazon<span class="token punctuation">.</span>Lambda<span class="token punctuation">.</span>Serialization<span class="token punctuation">.</span>SystemTextJson<span class="token punctuation">.</span>DefaultLambdaJsonSerializer<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">]</span>
 
<span class="token keyword">namespace</span> MyAWSLambda<span class="token punctuation">;</span>
 
<span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">Function</span>
<span class="token punctuation">{</span>
    <span class="token keyword">public</span> <span class="token keyword">async</span> Task<span class="token operator">&lt;</span><span class="token keyword">string</span><span class="token operator">&gt;</span> <span class="token function">FunctionHandler</span><span class="token punctuation">(</span>Input input<span class="token punctuation">,</span> ILambdaContext context<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span> dataToSign <span class="token operator">=</span> Convert<span class="token punctuation">.</span><span class="token function">FromBase64String</span><span class="token punctuation">(</span>input<span class="token punctuation">.</span>DataToSign<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
        <span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token operator">?</span> result <span class="token operator">=</span> <span class="token function">SignData</span><span class="token punctuation">(</span>dataToSign<span class="token punctuation">,</span> input<span class="token punctuation">.</span>DigestAlgorithm<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
        <span class="token keyword">if</span> <span class="token punctuation">(</span>result <span class="token operator">!=</span> <span class="token keyword">null</span><span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">return</span> Convert<span class="token punctuation">.</span><span class="token function">ToBase64String</span><span class="token punctuation">(</span>result<span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
        <span class="token keyword">else</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">throw</span> <span class="token keyword">new</span> <span class="token class-name">InvalidOperationException</span><span class="token punctuation">(</span><span class="token string">"Signing operation failed"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
    <span class="token punctuation">}</span>
    <span class="token keyword">static</span> <span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token operator">?</span> <span class="token function">SignData</span><span class="token punctuation">(</span><span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span> dataToSign<span class="token punctuation">,</span> <span class="token keyword">string</span><span class="token operator">?</span> digestAlgorithm<span class="token punctuation">)</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">string</span> certificateFilePassword <span class="token operator">=</span> <span class="token string">"johndoe"</span><span class="token punctuation">;</span>
        <span class="token keyword">string</span> certificateFilePath <span class="token operator">=</span> <span class="token string">"Resources/JohnDoe.pfx"</span><span class="token punctuation">;</span>
 
        <span class="token keyword">using</span> <span class="token punctuation">(</span>Stream stream <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span>certificateFilePath<span class="token punctuation">)</span><span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span> certRawData <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">byte</span><span class="token punctuation">[</span>stream<span class="token punctuation">.</span>Length<span class="token punctuation">]</span><span class="token punctuation">;</span>
            stream<span class="token punctuation">.</span><span class="token function">ReadExactly</span><span class="token punctuation">(</span>certRawData<span class="token punctuation">,</span> <span class="token number">0</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token keyword">int</span><span class="token punctuation">)</span>stream<span class="token punctuation">.</span>Length<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token keyword">using</span> <span class="token punctuation">(</span>X509Certificate2 fullCert <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">X509Certificate2</span><span class="token punctuation">(</span>certRawData<span class="token punctuation">,</span> certificateFilePassword<span class="token punctuation">)</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                <span class="token keyword">using</span> <span class="token punctuation">(</span>RSA<span class="token operator">?</span> rsa <span class="token operator">=</span> fullCert<span class="token punctuation">.</span><span class="token function">GetRSAPrivateKey</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
                <span class="token punctuation">{</span>
                    <span class="token keyword">if</span> <span class="token punctuation">(</span>rsa <span class="token operator">==</span> <span class="token keyword">null</span><span class="token punctuation">)</span>
                    <span class="token punctuation">{</span>
                        <span class="token keyword">throw</span> <span class="token keyword">new</span> <span class="token class-name">InvalidOperationException</span><span class="token punctuation">(</span><span class="token string">"Certificate does not contain an RSA private key"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
                    <span class="token punctuation">}</span>
 
                    <span class="token comment">// Map the digest algorithm string to HashAlgorithmName</span>
                    HashAlgorithmName algorithmName <span class="token operator">=</span> HashAlgorithmName<span class="token punctuation">.</span>SHA256<span class="token punctuation">;</span>
                    algorithmName <span class="token operator">=</span> digestAlgorithm <span class="token keyword">switch</span>
                    <span class="token punctuation">{</span>
                        <span class="token string">"Sha384"</span> <span class="token operator">=</span><span class="token operator">&gt;</span> HashAlgorithmName<span class="token punctuation">.</span>SHA384<span class="token punctuation">,</span>
                        <span class="token string">"Sha512"</span> <span class="token operator">=</span><span class="token operator">&gt;</span> HashAlgorithmName<span class="token punctuation">.</span>SHA512<span class="token punctuation">,</span>
                        _ <span class="token operator">=</span><span class="token operator">&gt;</span> HashAlgorithmName<span class="token punctuation">.</span>SHA256<span class="token punctuation">,</span>
                    <span class="token punctuation">}</span><span class="token punctuation">;</span>
 
                    <span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token operator">?</span> bytes <span class="token operator">=</span> rsa<span class="token punctuation">.</span><span class="token function">SignData</span><span class="token punctuation">(</span>dataToSign<span class="token punctuation">,</span> algorithmName<span class="token punctuation">,</span> RSASignaturePadding<span class="token punctuation">.</span>Pkcs1<span class="token punctuation">)</span><span class="token punctuation">;</span>
                    <span class="token keyword">return</span> bytes<span class="token punctuation">;</span>
                <span class="token punctuation">}</span>
            <span class="token punctuation">}</span>
        <span class="token punctuation">}</span>
    <span class="token punctuation">}</span>
 
    <span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">Input</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">public</span> <span class="token keyword">string</span> DataToSign <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span> <span class="token operator">=</span> <span class="token keyword">string</span><span class="token punctuation">.</span>Empty<span class="token punctuation">;</span>
 
        <span class="token keyword">public</span> <span class="token keyword">string</span><span class="token operator">?</span> DigestAlgorithm <span class="token punctuation">{</span> <span class="token keyword">get</span><span class="token punctuation">;</span> <span class="token keyword">set</span><span class="token punctuation">;</span> <span class="token punctuation">}</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><ol start="4"><li>Modify the aws-lambda-tools-defaults.json file and specify the <code>function-name</code> for the AWS Lambda function (e.g., <code>ExternalSignPdfAWSFunction</code>):</li></ol><pre class=" language-json"><code class="prism  language-json"><span class="token punctuation">{</span>
  <span class="token string">"Information"</span><span class="token punctuation">:</span> <span class="token punctuation">[</span>
    <span class="token string">"This file provides default values for the deployment wizard inside Visual Studio and the AWS Lambda commands added to the .NET Core CLI."</span><span class="token punctuation">,</span>
    <span class="token string">"To learn more about the Lambda commands with the .NET Core CLI execute the following command at the command line in the project root directory."</span><span class="token punctuation">,</span>
    <span class="token string">"dotnet lambda help"</span><span class="token punctuation">,</span>
    <span class="token string">"All the command line options for the Lambda command can be specified in this file."</span>
  <span class="token punctuation">]</span><span class="token punctuation">,</span>
  <span class="token string">"profile"</span><span class="token punctuation">:</span> <span class="token string">"telerik-dpl"</span><span class="token punctuation">,</span>
  <span class="token string">"region"</span><span class="token punctuation">:</span> <span class="token string">"eu-north-1"</span><span class="token punctuation">,</span>
  <span class="token string">"configuration"</span><span class="token punctuation">:</span> <span class="token string">"Release"</span><span class="token punctuation">,</span>
  <span class="token string">"package-type"</span><span class="token punctuation">:</span> <span class="token string">"image"</span><span class="token punctuation">,</span>
  <span class="token string">"function-memory-size"</span><span class="token punctuation">:</span> <span class="token number">512</span><span class="token punctuation">,</span>
  <span class="token string">"function-timeout"</span><span class="token punctuation">:</span> <span class="token number">30</span><span class="token punctuation">,</span>
  <span class="token string">"image-command"</span><span class="token punctuation">:</span> <span class="token string">"MyAWSLambda::MyAWSLambda.Function::FunctionHandler"</span><span class="token punctuation">,</span>
  <span class="token string">"docker-host-build-output-dir"</span><span class="token punctuation">:</span> <span class="token string">"./bin/Release/lambda-publish"</span><span class="token punctuation">,</span>
  <span class="token string">"function-name"</span><span class="token punctuation">:</span> <span class="token string">"ExternalSignPdfAWSFunction"</span>
<span class="token punctuation">}</span>
</code></pre><ol start="5"><li><p>Create a Console App (e.g., MySigningApp.csproj) that will consume the AWS Lambda function.</p></li><li><p>Install the following NuGet packages:</p></li></ol><ul><li>AWSSDK.Lambda</li><li>Telerik.Documents.Fixed</li></ul><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/lambda-packages.png?sfvrsn=b4ec15d_2" alt="MyAWSLambda - Packages" /></p><p>The <strong>Resources</strong> folder stores the unsigned PDF document together with the public .crt certificate.</p><ol start="7"><li>Modify the Program.cs file to demonstrate how to apply a digital signature to a PDF document using the Telerik <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/overview">PdfProcessing</a>library and an external AWS Lambda signer. The workflow includes importing a PDF, creating a <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/model/interactive-forms/form-fields/signaturefield">signature field</a> with a visual representation, configuring signature settings and exporting the signed document.</li></ol><p>Note: We will use the specified <code>function-name</code> in the previous step when creating the <code>LambdaFunctionSigner</code> object:</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">using</span> System<span class="token punctuation">.</span>Diagnostics<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">.</span>DigitalSignatures<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Primitives<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>FormatProviders<span class="token punctuation">.</span>Pdf<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">.</span>Annotations<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">.</span>DigitalSignatures<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">.</span>Editing<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">.</span>InteractiveForms<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">.</span>Objects<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Windows<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">.</span>Resources<span class="token punctuation">;</span>
 
<span class="token keyword">namespace</span> MySigningApp
<span class="token punctuation">{</span>
    <span class="token keyword">internal</span> <span class="token keyword">class</span> <span class="token class-name">Program</span>
    <span class="token punctuation">{</span>
        <span class="token keyword">static</span> <span class="token keyword">void</span> <span class="token function">Main</span><span class="token punctuation">(</span><span class="token keyword">string</span><span class="token punctuation">[</span><span class="token punctuation">]</span> args<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            PdfFormatProvider provider <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">PdfFormatProvider</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            RadFixedDocument document <span class="token operator">=</span> <span class="token function">ImportDocument</span><span class="token punctuation">(</span>provider<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token keyword">string</span> signatureName <span class="token operator">=</span> <span class="token string">"SampleSignature"</span><span class="token punctuation">;</span>
 
            Form form <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Form</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            form<span class="token punctuation">.</span>FormSource <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">FormSource</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            form<span class="token punctuation">.</span>FormSource<span class="token punctuation">.</span>Size <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Size</span><span class="token punctuation">(</span><span class="token number">120</span><span class="token punctuation">,</span> <span class="token number">120</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token comment">// We will use the editor to fill the Form XObject.  </span>
            FixedContentEditor formEditor <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">FixedContentEditor</span><span class="token punctuation">(</span>form<span class="token punctuation">.</span>FormSource<span class="token punctuation">)</span><span class="token punctuation">;</span>
            formEditor<span class="token punctuation">.</span><span class="token function">DrawCircle</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">Point</span><span class="token punctuation">(</span><span class="token number">50</span><span class="token punctuation">,</span> <span class="token number">50</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token number">20</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            formEditor<span class="token punctuation">.</span><span class="token function">DrawText</span><span class="token punctuation">(</span>signatureName<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token comment">// The Signature object is added to a signature field, so we can add a visualization to it.  </span>
            SignatureField signatureField <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">SignatureField</span><span class="token punctuation">(</span>signatureName<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token comment">// Create the external signer that will call AWS Lambda to perform the actual signing</span>
            ExternalSignerBase externalSigner <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">LambdaFunctionSigner</span><span class="token punctuation">(</span><span class="token string">"ExternalSignPdfAWSFunction"</span><span class="token punctuation">,</span> <span class="token string">"eu-north-1"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token comment">// Configure the signature with digest algorithm and timestamp server</span>
            Signature signature <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Signature</span><span class="token punctuation">(</span>externalSigner<span class="token punctuation">)</span><span class="token punctuation">;</span>
            signature<span class="token punctuation">.</span>Settings<span class="token punctuation">.</span>DigestAlgorithm <span class="token operator">=</span> DigestAlgorithmType<span class="token punctuation">.</span>Sha512<span class="token punctuation">;</span>
            signature<span class="token punctuation">.</span>Settings<span class="token punctuation">.</span>TimeStampServer <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">TimeStampServer</span><span class="token punctuation">(</span><span class="token string">"http://timestamp.digicert.com"</span><span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            signatureField<span class="token punctuation">.</span>Signature <span class="token operator">=</span> signature<span class="token punctuation">;</span>
 
            <span class="token comment">// The widget contains the Form XObject and defines the appearance of the signature field.  </span>
            SignatureWidget widget <span class="token operator">=</span> signatureField<span class="token punctuation">.</span>Widgets<span class="token punctuation">.</span><span class="token function">AddWidget</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            widget<span class="token punctuation">.</span>Rect <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">Rect</span><span class="token punctuation">(</span><span class="token number">200</span><span class="token punctuation">,</span> <span class="token number">600</span><span class="token punctuation">,</span> <span class="token number">100</span><span class="token punctuation">,</span> <span class="token number">100</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            widget<span class="token punctuation">.</span>Border <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">AnnotationBorder</span><span class="token punctuation">(</span><span class="token number">100</span><span class="token punctuation">,</span> AnnotationBorderStyle<span class="token punctuation">.</span>Solid<span class="token punctuation">,</span> <span class="token keyword">null</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            widget<span class="token punctuation">.</span>Content<span class="token punctuation">.</span>NormalContentSource <span class="token operator">=</span> form<span class="token punctuation">.</span>FormSource<span class="token punctuation">;</span>
 
            <span class="token comment">// The Widget class inherits from Annotation. And, as any other annotation, must be added to the respective collection of the page.  </span>
            RadFixedPage page <span class="token operator">=</span> document<span class="token punctuation">.</span>Pages<span class="token punctuation">.</span><span class="token function">AddPage</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            page<span class="token punctuation">.</span>Annotations<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span>widget<span class="token punctuation">)</span><span class="token punctuation">;</span>
            document<span class="token punctuation">.</span>AcroForm<span class="token punctuation">.</span>FormFields<span class="token punctuation">.</span><span class="token function">Add</span><span class="token punctuation">(</span>signatureField<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            document<span class="token punctuation">.</span>AcroForm<span class="token punctuation">.</span>SignatureFlags <span class="token operator">=</span> SignatureFlags<span class="token punctuation">.</span>AppendOnly<span class="token punctuation">;</span>
 
            <span class="token function">ExportDocument</span><span class="token punctuation">(</span>provider<span class="token punctuation">,</span> document<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
        <span class="token punctuation">}</span>
 
        <span class="token keyword">static</span> RadFixedDocument <span class="token function">ImportDocument</span><span class="token punctuation">(</span>PdfFormatProvider provider<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">using</span> <span class="token punctuation">(</span>FileStream stream <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">OpenRead</span><span class="token punctuation">(</span><span class="token string">"Resources/SampleDocument.pdf"</span><span class="token punctuation">)</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                <span class="token keyword">return</span> provider<span class="token punctuation">.</span><span class="token function">Import</span><span class="token punctuation">(</span>stream<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">20</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
        <span class="token punctuation">}</span>
 
        <span class="token keyword">static</span> <span class="token keyword">void</span> <span class="token function">ExportDocument</span><span class="token punctuation">(</span>PdfFormatProvider provider<span class="token punctuation">,</span> RadFixedDocument document<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">string</span> outputPath <span class="token operator">=</span> <span class="token string">"ExternallySignedDocument.pdf"</span><span class="token punctuation">;</span>
            File<span class="token punctuation">.</span><span class="token function">Delete</span><span class="token punctuation">(</span>outputPath<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token keyword">using</span> <span class="token punctuation">(</span>FileStream stream <span class="token operator">=</span> File<span class="token punctuation">.</span><span class="token function">Create</span><span class="token punctuation">(</span>outputPath<span class="token punctuation">)</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                provider<span class="token punctuation">.</span><span class="token function">Export</span><span class="token punctuation">(</span>document<span class="token punctuation">,</span> stream<span class="token punctuation">,</span> TimeSpan<span class="token punctuation">.</span><span class="token function">FromSeconds</span><span class="token punctuation">(</span><span class="token number">60</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
 
            Process<span class="token punctuation">.</span><span class="token function">Start</span><span class="token punctuation">(</span><span class="token keyword">new</span> <span class="token class-name">ProcessStartInfo</span><span class="token punctuation">(</span>outputPath<span class="token punctuation">)</span> <span class="token punctuation">{</span> UseShellExecute <span class="token operator">=</span> <span class="token keyword">true</span> <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><ol start="8"><li>Implement the External Signer.</li></ol><p>The <strong>LambdaFunctionSigner</strong> class is a custom implementation of an external signer that delegates digital signing operations to an AWS Lambda function. It inherits from <a target="_blank" href="https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/features/digital-signature/external-digital-signing#using-externalsignerbase"><strong>ExternalSignerBase</strong></a>and is designed for scenarios where the private key is securely stored in AWS Lambda, while the public certificate resides locally.</p><pre class=" language-csharp"><code class="prism  language-csharp"><span class="token keyword">using</span> Amazon<span class="token punctuation">.</span>Lambda<span class="token punctuation">;</span>
<span class="token keyword">using</span> Amazon<span class="token punctuation">.</span>Lambda<span class="token punctuation">.</span>Model<span class="token punctuation">;</span>
<span class="token keyword">using</span> Amazon<span class="token punctuation">.</span>Runtime<span class="token punctuation">;</span> 
<span class="token keyword">using</span> System<span class="token punctuation">.</span>Security<span class="token punctuation">.</span>Cryptography<span class="token punctuation">.</span>X509Certificates<span class="token punctuation">;</span>
<span class="token keyword">using</span> System<span class="token punctuation">.</span>Text<span class="token punctuation">;</span>
<span class="token keyword">using</span> System<span class="token punctuation">.</span>Text<span class="token punctuation">.</span>Json<span class="token punctuation">;</span>
<span class="token keyword">using</span> Telerik<span class="token punctuation">.</span>Documents<span class="token punctuation">.</span>Fixed<span class="token punctuation">.</span>Model<span class="token punctuation">.</span>DigitalSignatures<span class="token punctuation">;</span>
 
<span class="token keyword">namespace</span> MySigningApp
<span class="token punctuation">{</span>
    <span class="token keyword">public</span> <span class="token keyword">class</span> <span class="token class-name">LambdaFunctionSigner</span> <span class="token punctuation">:</span> ExternalSignerBase
 
    <span class="token punctuation">{</span>
        <span class="token keyword">private</span> <span class="token keyword">readonly</span> <span class="token keyword">string</span> functionName<span class="token punctuation">;</span>
        <span class="token keyword">private</span> <span class="token keyword">readonly</span> AmazonLambdaClient lambdaClient<span class="token punctuation">;</span>
 
        <span class="token comment">/// &lt;summary&gt;</span>
        <span class="token comment">/// Creates a new instance of LambdaFunctionSigner.</span>
        <span class="token comment">/// &lt;/summary&gt;</span>
        <span class="token comment">/// &lt;param name="functionName"&gt;The AWS Lambda function name or ARN (e.g., "MyAWSLambda" or "arn:aws:lambda:region:account:function:name")&lt;/param&gt;</span>
        <span class="token comment">/// &lt;param name="region"&gt;The AWS region where the Lambda function is deployed (e.g., "us-east-1", "eu-north-1")&lt;/param&gt;</span>
        <span class="token keyword">public</span> <span class="token function">LambdaFunctionSigner</span><span class="token punctuation">(</span><span class="token keyword">string</span> functionName<span class="token punctuation">,</span> <span class="token keyword">string</span> region<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">this</span><span class="token punctuation">.</span>functionName <span class="token operator">=</span> functionName<span class="token punctuation">;</span>
            <span class="token keyword">var</span> credentials <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">BasicAWSCredentials</span><span class="token punctuation">(</span><span class="token string">"your-access-key"</span><span class="token punctuation">,</span> <span class="token string">"your-secret-key"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token keyword">this</span><span class="token punctuation">.</span>lambdaClient <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">AmazonLambdaClient</span><span class="token punctuation">(</span>credentials<span class="token punctuation">,</span> Amazon<span class="token punctuation">.</span>RegionEndpoint<span class="token punctuation">.</span><span class="token function">GetBySystemName</span><span class="token punctuation">(</span>region<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
 
        <span class="token comment">/// &lt;summary&gt;</span>
        <span class="token comment">/// Gets the certificate chain used for signing.</span>
        <span class="token comment">/// &lt;/summary&gt;</span>
        <span class="token comment">/// &lt;returns&gt;An array of X509Certificate2 objects representing the certificate chain.&lt;/returns&gt;</span>
        <span class="token comment">/// &lt;remarks&gt;</span>
        <span class="token comment">/// The public certificate is loaded from the Resources folder and should match</span>
        <span class="token comment">/// the private key certificate stored in the AWS Lambda function.</span>
        <span class="token comment">/// &lt;/remarks&gt;</span>
        <span class="token keyword">protected</span> <span class="token keyword">override</span> X509Certificate2<span class="token punctuation">[</span><span class="token punctuation">]</span> <span class="token function">GetCertificateChain</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">string</span> publicKey <span class="token operator">=</span> <span class="token string">"Resources/JohnDoe.crt"</span><span class="token punctuation">;</span>
            <span class="token keyword">return</span> <span class="token punctuation">[</span><span class="token keyword">new</span> <span class="token class-name">X509Certificate2</span><span class="token punctuation">(</span>publicKey<span class="token punctuation">)</span><span class="token punctuation">]</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
 
        <span class="token comment">/// &lt;summary&gt;</span>
        <span class="token comment">/// Signs the provided data by invoking the AWS Lambda function.</span>
        <span class="token comment">/// &lt;/summary&gt;</span>
        <span class="token comment">/// &lt;param name="dataToSign"&gt;The byte array containing the data to be signed.&lt;/param&gt;</span>
        <span class="token comment">/// &lt;param name="settings"&gt;The signature settings containing digest algorithm and other configuration.&lt;/param&gt;</span>
        <span class="token comment">/// &lt;returns&gt;A byte array containing the digital signature.&lt;/returns&gt;</span>
        <span class="token comment">/// &lt;exception cref="InvalidOperationException"&gt;Thrown when the Lambda invocation fails or returns an error.&lt;/exception&gt;</span>
        <span class="token comment">/// &lt;remarks&gt;</span>
        <span class="token comment">/// This method:</span>
        <span class="token comment">/// 1. Serializes the data and settings to JSON</span>
        <span class="token comment">/// 2. Invokes the Lambda function synchronously</span>
        <span class="token comment">/// 3. Validates the response</span>
        <span class="token comment">/// 4. Returns the decoded signature bytes</span>
        <span class="token comment">/// &lt;/remarks&gt;</span>
        <span class="token keyword">protected</span> <span class="token keyword">override</span> <span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span> <span class="token function">SignData</span><span class="token punctuation">(</span><span class="token keyword">byte</span><span class="token punctuation">[</span><span class="token punctuation">]</span> dataToSign<span class="token punctuation">,</span> SignatureSettings settings<span class="token punctuation">)</span>
        <span class="token punctuation">{</span>
            <span class="token keyword">var</span> requestData <span class="token operator">=</span> <span class="token keyword">new</span>
            <span class="token punctuation">{</span>
                DataToSign <span class="token operator">=</span> Convert<span class="token punctuation">.</span><span class="token function">ToBase64String</span><span class="token punctuation">(</span>dataToSign<span class="token punctuation">)</span><span class="token punctuation">,</span>
                DigestAlgorithm <span class="token operator">=</span> settings<span class="token punctuation">.</span>DigestAlgorithm<span class="token punctuation">.</span><span class="token function">ToString</span><span class="token punctuation">(</span><span class="token punctuation">)</span>
            <span class="token punctuation">}</span><span class="token punctuation">;</span>
 
            <span class="token keyword">string</span> jsonRequest <span class="token operator">=</span> JsonSerializer<span class="token punctuation">.</span><span class="token function">Serialize</span><span class="token punctuation">(</span>requestData<span class="token punctuation">,</span> <span class="token keyword">new</span> <span class="token class-name">JsonSerializerOptions</span>
            <span class="token punctuation">{</span>
                WriteIndented <span class="token operator">=</span> <span class="token keyword">true</span>
            <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token keyword">var</span> invokeRequest <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">InvokeRequest</span>
            <span class="token punctuation">{</span>
                FunctionName <span class="token operator">=</span> <span class="token keyword">this</span><span class="token punctuation">.</span>functionName<span class="token punctuation">,</span>
                InvocationType <span class="token operator">=</span> InvocationType<span class="token punctuation">.</span>RequestResponse<span class="token punctuation">,</span> <span class="token comment">// synchronous</span>
                Payload <span class="token operator">=</span> jsonRequest
            <span class="token punctuation">}</span><span class="token punctuation">;</span>
 
            InvokeResponse invokeResponse <span class="token operator">=</span> lambdaClient<span class="token punctuation">.</span><span class="token function">InvokeAsync</span><span class="token punctuation">(</span>invokeRequest<span class="token punctuation">)</span><span class="token punctuation">.</span>Result<span class="token punctuation">;</span>
 
            <span class="token keyword">if</span> <span class="token punctuation">(</span>invokeResponse<span class="token punctuation">.</span>StatusCode <span class="token operator">!=</span> <span class="token number">200</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                <span class="token keyword">throw</span> <span class="token keyword">new</span> <span class="token class-name">InvalidOperationException</span><span class="token punctuation">(</span>$<span class="token string">"Lambda invocation failed with status code: {invokeResponse.StatusCode}"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
 
            <span class="token keyword">if</span> <span class="token punctuation">(</span><span class="token operator">!</span><span class="token keyword">string</span><span class="token punctuation">.</span><span class="token function">IsNullOrEmpty</span><span class="token punctuation">(</span>invokeResponse<span class="token punctuation">.</span>FunctionError<span class="token punctuation">)</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                <span class="token keyword">string</span> errorMessage <span class="token operator">=</span> Encoding<span class="token punctuation">.</span>UTF8<span class="token punctuation">.</span><span class="token function">GetString</span><span class="token punctuation">(</span>invokeResponse<span class="token punctuation">.</span>Payload<span class="token punctuation">.</span><span class="token function">ToArray</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
                <span class="token keyword">throw</span> <span class="token keyword">new</span> <span class="token class-name">InvalidOperationException</span><span class="token punctuation">(</span>$<span class="token string">"Lambda function error: {invokeResponse.FunctionError}. Details: {errorMessage}"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
 
            <span class="token keyword">string</span> jsonResponse <span class="token operator">=</span> Encoding<span class="token punctuation">.</span>UTF8<span class="token punctuation">.</span><span class="token function">GetString</span><span class="token punctuation">(</span>invokeResponse<span class="token punctuation">.</span>Payload<span class="token punctuation">.</span><span class="token function">ToArray</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token keyword">string</span><span class="token operator">?</span> base64Signature <span class="token operator">=</span> JsonSerializer<span class="token punctuation">.</span><span class="token generic-method function">Deserialize<span class="token punctuation">&lt;</span><span class="token keyword">string</span><span class="token punctuation">&gt;</span></span><span class="token punctuation">(</span>jsonResponse<span class="token punctuation">)</span><span class="token punctuation">;</span>
 
            <span class="token keyword">if</span> <span class="token punctuation">(</span><span class="token keyword">string</span><span class="token punctuation">.</span><span class="token function">IsNullOrEmpty</span><span class="token punctuation">(</span>base64Signature<span class="token punctuation">)</span><span class="token punctuation">)</span>
            <span class="token punctuation">{</span>
                <span class="token keyword">throw</span> <span class="token keyword">new</span> <span class="token class-name">InvalidOperationException</span><span class="token punctuation">(</span><span class="token string">"Invalid response from Lambda function"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
            <span class="token punctuation">}</span>
 
            <span class="token keyword">return</span> Convert<span class="token punctuation">.</span><span class="token function">FromBase64String</span><span class="token punctuation">(</span>base64Signature<span class="token punctuation">)</span><span class="token punctuation">;</span>
        <span class="token punctuation">}</span>
    <span class="token punctuation">}</span>
<span class="token punctuation">}</span>
</code></pre><ol start="9"><li>Run the project.</li></ol><p>As a result, the unsigned PDF document is successfully signed:</p><p><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-12/signed-pdf.png?sfvrsn=c5a33d9f_2" alt="PDF is signed and has certificate details" /></p><h2 id="wrapping-up">Wrapping Up</h2><p>Integrating Telerik Document Processing with Azure Functions and AWS Lambda demonstrates how serverless architectures can transform document workflows. By leveraging cloud scalability and pay-per-use models, organizations can efficiently handle tasks like PDF merging and secure digital signing without maintaining dedicated infrastructure. These approaches not only reduce operational overhead but also enhance security by isolating sensitive keys in the cloud.</p><p>As businesses continue to adopt remote and distributed solutions, similar patterns can be extended to other workflows such as document conversion, watermarking and batch processing, unlocking even greater flexibility and cost efficiency. The examples provided serve as a foundation for building robust, cloud-powered document services that scale seamlessly with demand.</p><p>Try out the <a target="_blank" href="https://www.telerik.com/document-processing-libraries">Telerik Document Processing Libraries</a>, which are included in the <a target="_blank" href="https://www.telerik.com/devcraft">Telerik DevCraft bundles</a> to pair perfectly with your favorite component libraries.</p><a target="_blank" href="https://www.telerik.com/try/devcraft-ultimate" class="Btn">Try Telerik DevCraft</a><img src="https://feeds.telerik.com/link/23068/17236286.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:e3400a4f-bbad-4897-b784-b6adff480a09</id>
    <title type="text">The AI-Forward Telerik &amp; Kendo UI 2025 Q4 Release Is Here</title>
    <summary type="text">Progress Telerik and Kendo UI 2025 Q4 release is here, helping teams save at least 30% of the development cycle with AI-generated UI, 12 AI Coding Assistants, MCP debugging, .NET 10 support and more.</summary>
    <published>2025-11-19T16:42:12Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Iva Borisova </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17213036/ai-forward-telerik-kendo-ui-2025-q4-release"/>
    <content type="text"><![CDATA[<p><span class="featured">Progress Telerik and Kendo UI 2025 Q4 release is here, helping teams save at least 30% of the development cycle with AI-generated UI, 12 AI Coding Assistants, MCP debugging, .NET 10 support and more.</span></p><p>At its core, the <strong>Telerik and Kendo UI 2025 Q4 release</strong> is about giving developers, team leads and enterprises <strong>a partner they can trust</strong>: AI tools that understand the Telerik and Kendo UI libraries inside-out, adapt to their technology stack and meet the standards of enterprise-ready UI application development. These tools don&rsquo;t ask teams to start from scratch. They&rsquo;re simply designed to accelerate what you&rsquo;re already building.</p><p><strong>The spotlight of this 2025 Q4 release is the</strong> <a target="_blank" href="https://www.telerik.com/mcp-servers"><strong>Telerik Agentic UI Generator</strong></a>&mdash;a new way to build UI with speed and confidence. Developers can now prompt their way into fully functional pages&mdash;complete with layouts, styling, accessibility, needed components and data bindings. It does this from an MCP server that works in any AI-enabled IDE.</p><p>The Telerik Agentic UI Generator debuts in <a target="_blank" href="https://www.telerik.com/blazor-mcp-servers">Telerik UI for Blazor</a>, <a target="_blank" href="https://www.telerik.com/react-mcp-servers">KendoReact</a> and <a target="_blank" href="https://www.telerik.com/angular-mcp-servers">Kendo UI for Angular</a> as part of DevCraft Complete or Ultimate subscriptions. The Agentic UI Generator is an evolution of the AI Coding Assistants currently available across all major Telerik and Kendo UI libraries, reporting and document processing tools, giving developers a full productivity stack.</p><p>Beyond development acceleration, the 2025 Q4 release empowers teams to <strong>continue embedding AI directly into their applications</strong>. New and enhanced AI components like the Inline AI Prompt, AI-optimized Chat UI and prompt-driven Data Grid bring natural language control to everyday user scenarios.</p><p>AI-driven innovation only delivers value when it&rsquo;s matched with <strong>stability and long-term platform confidence</strong>. That&rsquo;s why Progress continues the tradition of day-zero compatibility with Microsoft&rsquo;s latest technologies with <a target="_blank" href="https://www.telerik.com/blogs/day-zero-support-net-10-across-progress-telerik"><strong>.NET 10 fully supported at launch</strong></a>.</p><p>The 2025 Q4 release introduces AI-driven debugging capabilities in Fiddler Everywhere, too, expanding Progress&rsquo; MCP ecosystem beyond UI development. With <a target="_blank" href="https://www.youtube.com/watch?v=YO9EcwUSock">Fiddler MCP integration</a>, network traffic analysis and debugging data are available directly inside your IDE. Combined with the new <a target="_blank" href="https://www.telerik.com/fiddler/fiddler-everywhere/documentation/debugging-assistant/fiddler-assistant">Debugging Assistant</a>, Fiddler transforms the debugging journey into a guided, conversational experience that helps resolve issues faster and earlier in the development cycle.</p><p><strong>To see the new updates firsthand, don&rsquo;t forget to sign up for the release webinars:</strong></p><ul><li><a target="_blank" href="https://www.telerik.com/campaigns/telerik-2025-q4-release-webinar---web--desktop-and-mobile">Telerik 2025 Q4 Release Webinar: Web, Desktop and Mobile on Dec 3</a></li><li><a target="_blank" href="https://www.telerik.com/campaigns/kendo-ui-2025-q4-release-webinar">Kendo UI 2025 Q4 Release Webinaron Dec 4</a></li><li><a target="_blank" href="https://www.telerik.com/campaigns/telerik-2025-q4-release-webinar---reporting-and-fiddler">Telerik Reporting and Fiddler 2025 Q4 Release Webinar on Dec 5</a></li></ul><h2 id="let’s-dive-into-the-2025-q4-highlights">Let&rsquo;s Dive into the 2025 Q4 Highlights</h2><h3 id="build-and-deliver-faster-with-context-aware-ai">Build and Deliver Faster with Context-Aware AI</h3><ul><li><a target="_blank" href="https://www.telerik.com/mcp-servers"><strong>Telerik Agentic UI Generator</strong></a><strong>:</strong> Generate pages as quickly as possible with Telerik Agentic UI Generator. Use prompts to assemble layouts, grids, forms and styles based on Telerik and Kendo UI components. Keep your IDE and workflow and code at least 30% faster.</li><li><strong>IDE-integrated AI Coding Assistants:</strong> Combined with the Agentic UI Generator, the <a target="_blank" href="https://www.telerik.com/mcp-servers">AI Coding Assistants</a>, currently available across all major Telerik and Kendo UI libraries, deliver context-aware, specialized code so teams can ship faster and do more.</li><li><strong>Prompt-controlled Data Grid:</strong> Empower users to effortlessly interact with the Data Grids using natural language, whether through the built-in prompt interface or a unified, app-wide chat experience.</li><li><strong>New Inline AI Prompt:</strong> Ideal for enabling in-context interactions such as rewriting content, fixing errors and generating alternatives.</li><li><strong>AI-enhanced Chat UI:</strong> This component is redesigned to enable smarter, more natural interactions through streaming responses, text-to-speech, flexible response formats and built-in token tracking.</li><li><strong>Redesigned AI Prompt:</strong> All key web UI libraries feature an enhanced AI Prompt that supports a new message template, speech-to-text and streaming buttons, improved accessibility and more.</li><li><strong>Enhanced GenAI-powered report insights:</strong> Local embeddings for more conscious, controlled spending and tighter data privacy. Plus, broader viewer support, including WPF Viewer (remote engine), Native Blazor Viewer and Native Angular Viewer now fully supporting GenAI insights.</li><li><strong>Conversational prompts in Progress ThemeBuilder:</strong> Refine the AI-generated theme through natural, conversational feedback. Adjust colors, spacing, typography and accessibility in plain language, and see instant updates.</li><li><strong>MCP debugging:</strong> With Fiddler MCP integration, network traffic analysis and debugging data are available directly inside your IDE, enabling developers to quickly pinpoint performance bottlenecks, security issues or failed sessions.</li><li><strong>AI demo hub:</strong> The new dedicated AI demo hub, showcasing AI-enhanced components and features is available across Telerik and Kendo UI web products.</li></ul><h3 id="embrace-next-gen-frameworks">Embrace Next-Gen Frameworks</h3><ul><li><strong><a target="_blank" href="https://www.telerik.com/blogs/day-zero-support-net-10-across-progress-telerik">Day-zero support for .NET 10</a>:</strong> Continuing day-zero support for Microsoft&rsquo;s newest frameworks, all Telerik products now feature compatibility with .NET 10.</li></ul><h3 id="streamline-development-with-new-interactive-components">Streamline Development with New, Interactive Components</h3><ul><li><strong>Diagram in</strong> <a target="_blank" href="https://www.telerik.com/blazor-ui/diagram"><strong>Telerik UI for Blazor</strong></a> <strong>and</strong> <a target="_blank" href="https://www.telerik.com/kendo-angular-ui/diagram"><strong>Kendo UI for Angular</strong></a><strong>:</strong> Map relationships, workflows and structures with customizable shapes, flexible connections and built-in layouts with the new Diagram.</li><li><a target="_blank" href="https://www.telerik.com/blazor-ui/chat-(conversational-ui)"><strong>Chat UI</strong></a> <strong>in Telerik UI for Blazor:</strong> Elevate user engagement with modern, real-time conversations, connecting people or enabling intelligent interactions through AI-powered chatbots.</li><li><strong>Kendo UI for Angular</strong> <a target="_blank" href="https://www.telerik.com/kendo-angular-ui/form"><strong>Form</strong></a><strong>:</strong> Easily build and organize complex forms with a structured, configurable layout. Group inputs, dropdowns, labels, hints, error messages and more to deliver clear, consistent and user-friendly forms.</li><li><strong>Speech-To-Text Button:</strong> Empower users to convert speech into text with a single click, making it easy to add voice input to forms, search bars, chat interfaces and other interactive scenarios.</li><li><strong>Bottom Sheet and Skeleton controls in <a target="_blank" href="https://www.telerik.com/maui-ui">Telerik UI for .NET MAUI</a>:</strong> Slide up additional content from the bottom of the screen to enhance your app experience with the BottomSheet control. Create a preview of how content is going to be displayed before it is loaded with the Skeleton component.</li></ul><h3 id="unlock-robust-features-in-your-favorite-components-and-tools">Unlock Robust Features in Your Favorite Components and Tools</h3><ul><li><strong>Stacked data layout mode in Data Grids:</strong> Deliver a consistent, user-friendly experience across devices with an adaptive, card-like display optimized for both desktop and mobile.</li><li><strong>Workflow diagram in Telerik UI for ASP.NET Core/MVC and Kendo UI for jQuery:</strong> Specialized shape types allow you to represent algorithms, tasks and events. While these shapes are tailored for workflows, they&rsquo;re versatile enough for any diagram scenario.</li><li><strong>PDF Viewer enhancements:</strong> Text highlight, free text annotations and form filling for completing PDF forms directly within your app are added to Kendo UI for Angular. Form filling is also available in Telerik UI for Blazor. AI-powered PDF querying and summarization are now present in Telerik UI for WPF and UI for WinForms.</li><li><strong>Responsive Form layout in Angular and React:</strong> Build forms that automatically adapt their columns, spacing and field arrangements across breakpoints to deliver a seamless user experience on any screen size.</li><li><strong>Dark mode in Progress ThemeBuilder:</strong> Switch to the new dark mode for a more comfortable experience in lowlight setups.</li><li><strong>Document Processing Libraries (DPL) improvements:</strong> DPL continues to expand its AI and file-processing capabilities, giving developers more flexibility and smarter ways to work with documents.</li><li><strong>Debugging Assistant:</strong> Fiddler transforms the debugging journey into a guided, conversational experience that helps resolve issues faster and earlier in the development cycle.</li></ul><h2 id="what’s-new--release-history">What&rsquo;s New &amp; Release History</h2><p>To see everything that is new in 2025 Q4, visit the <a target="_blank" href="https://www.telerik.com/support/whats-new">What&rsquo;s New in Telerik and Kendo UI</a> page. For a deeper dive into each product, follow the links below.</p><table>
 <thead><tr><th style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><strong>Product</strong></th><th style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><strong>What&rsquo;s&nbsp;New</strong> </th><th style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><strong>Release History</strong></th></tr></thead><tbody><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Kendo UI for Angular </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/kendo-angular-ui/2025-q4">What's New in Kendo UI for Angular </a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/kendo-angular-ui/components/changelogs/kendo-angular-ui#v21.0.0">Kendo UI for Angular Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">KendoReact </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/kendo-react-ui/2025-q4">What's New in KendoReact </a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/kendo-react-ui/components/changelogs/ui-for-react#v13.0.0">KendoReact Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Kendo UI for Vue </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/kendo-vue-ui/2025-q4">What's New in Kendo UI for Vue </a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/kendo-vue-ui/components/changelogs/ui-for-vue#v7.0.1">Kendo UI for Vue Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Kendo UI for jQuery </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/kendo-jquery-ui/2025-q4">What's New in Kendo UI for jQuery </a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/kendo-ui/release-history/kendo-ui-for-jquery-2025-4-1111">Kendo UI for jQuery Release History </a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik UI for Blazor </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/blazor-ui/2025-q4">What's New in Telerik UI for Blazor</a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/blazor-ui/release-history/telerik-ui-for-blazor-12-0-0-(2025-q4)">Telerik UI for Blazor Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik UI for ASP.NЕТ Core </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/aspnet-core-ui/2025-q4">What's New in Telerik UI for ASP.NET Core </a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/aspnet-core-ui/release-history/telerik-ui-for-asp-net-core-2025-4-1111">Telerik UI for ASP.NET Core Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik UI for ASP.NET MVC </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/aspnet-mvc/2025-q4">What's New in Telerik UI for ASP.NET MVC</a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/aspnet-mvc/release-history/telerik-ui-for-asp-net-mvc-2025-4-1111">Telerik UI for ASP.NET MVC Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik UI for ASP.NET AJAX </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/aspnet-ajax/2025-q4">What's New in Telerik UI for ASP.NET AJAX</a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/aspnet-ajax/release-history/telerik-ui-for-asp-net-ajax-2025-4-1111-(2025-q4)">Telerik UI for ASP.NET AJAX Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik UI for .NET MAUI </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/maui-ui/2025-q4">What's New in Telerik UI for .NET MAUI</a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/maui-ui/release-history/telerik-ui-for-net-maui-12-0-0-(2025-q4)">Telerik UI for .NET MAUI Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik UI for WPF </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/wpf/2025-q4">What's New in Telerik UI for WPF</a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/wpf/release-history/telerik-ui-for-wpf-2025-4-1111-(2025-q4)">Telerik UI for WPF Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik UI for WinForms </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/winforms/2025-q4">What's New in Telerik UI for WinForms </a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/winforms/release-history/telerik-ui-for-winforms-2025-4-1111-(2025-q4)">Telerik UI for WinForms Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">ThemeBuilder </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/themebuilder/2025-q4">What's New in ThemeBuilder </a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://docs.telerik.com/themebuilder/release-notes#11122025">ThemeBuilder Release Notes</a>  &nbsp;</td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik Reporting </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/reporting/2025-q4">What's New in Telerik Reporting</a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/reporting/release-history/progress-telerik-reporting-2025-q4-19-3-25-1111">Telerik Reporting Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik Report Server </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/report-server/2025-q4">What's New in Telerik Report Server</a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/report-server/release-history/progress-telerik-report-server-2025-q4-(11-3-25-1111)">Telerik Report Server Release History</a></td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik Document Processing&nbsp;&nbsp; </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/document-processing-libraries">What&rsquo;s&nbsp;new in Telerik DPL&nbsp;</a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/telerik-document-processing/release-history/progress-telerik-document-processing-2025-4-1104">Telerik Document Processing Libraries Release&nbsp;History</a>&nbsp;</td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Telerik&nbsp;JustMock&nbsp; </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/justmock/2025-q4">What&rsquo;s new in Telerik JustMock</a>&nbsp;</td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/justmock/release-history/justmock-2025-q4-(2025-4-1112-487)">Telerik JustMock Release History</a>&nbsp;</td></tr><tr><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;">Fiddler Everywhere  </td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/fiddler-everywhere/2025-q4">What's New in Fiddler Everywhere </a></td><td style="width:33.3333%;border-width:1px;border-style:dotted;border-color:#bdbdba;padding:5px;margin:5px;"><a target="_blank" href="https://www.telerik.com/support/whats-new/fiddler-everywhere/release-history/fiddler-everywhere-v7.5.0">Fiddler Everywhere Release History</a></td></tr></tbody></table><img src="https://feeds.telerik.com/link/23068/17213036.gif" height="1" width="1"/>]]></content>
  </entry>
  <entry>
    <id>urn:uuid:b18affbb-58f9-43ab-8bf2-ab6e90aaa500</id>
    <title type="text">Next Leap in Developer Productivity: AI-Forward Telerik &amp; Kendo UI 2025 Q4 Release Webinars Coming Dec. 3-5</title>
    <summary type="text">Progress Telerik and Kendo UI 2025 Q4 release on November 19 expects to help teams save at least 30% of the development cycle with AI-generated UI, 12 AI Coding Assistants, MCP debugging, .NET 10 support and more.</summary>
    <published>2025-11-03T17:17:01Z</published>
    <updated>2026-05-25T00:08:04Z</updated>
    <author>
      <name>Iva Borisova </name>
    </author>
    <link rel="alternate" href="https://feeds.telerik.com/link/23068/17202353/ai-forward-telerik-kendo-ui-2025-q4-release-webinars-coming"/>
    <content type="text"><![CDATA[<p><span class="featured">Progress Telerik and Kendo UI 2025 Q4 release on November 19 expects to help teams save at least 30% of the development cycle with AI-generated UI, 12 AI Coding Assistants, MCP debugging, .NET 10 support and more.</span></p><p>With the recent releases, Progress is helping to shape a new era of developer productivity: <strong>AI that behaves less like a tool and more like a teammate.</strong> Instead of forcing developers to change their flow to match an AI system, Telerik, Kendo UI and Fiddler delivered AI tools that bring intelligence directly into your environment, components and patterns.</p><p>Whether generating full UI layouts, refining code in the moment, debugging network traffic or enabling end users to trigger smart actions through prompt-driven interfaces, these products move beyond traditional AI integration into the realm of agentic, embedded collaboration.</p><p>At its core, <strong>the 2025 Q4 release on November 19</strong> is about giving developers, team leads and enterprises a partner they can trust: AI tools that understand Telerik and Kendo UI inside-out, adapt to their technology stack and meet the standards of enterprise-ready UI application development. These tools don&rsquo;t ask teams to start from scratch. They&rsquo;re simply designed to accelerate what you&rsquo;re already building.</p><p><strong>The flagship innovation of this 2025 Q4 release is the Telerik Agentic UI Generator</strong>*&mdash;a new way to build UI with speed and confidence. Developers can now prompt their way into fully functional pages&mdash;complete with layouts, styling, accessibility, needed components and data bindings. It does this from an MCP server that works in any AI-enabled IDE.</p><p>* The Telerik Agentic UI Generator debuts in Telerik UI for Blazor, KendoReact and Kendo UI for Angular as part of DevCraft Complete or Ultimate subscriptions.</p><p><strong>The Agentic UI Generator is an evolution of the</strong> <a target="_blank" href="https://www.telerik.com/mcp-servers"><strong>AI Coding Assistants</strong></a> currently available across all major Telerik and Kendo UI libraries, reporting and document processing tools, giving developers a full productivity stack. Developers using the early versions of the AI Coding Assistants have reported an average of 30% time savings, and this innovation should go even further.</p><p>Beyond development acceleration, <strong>the 2025 Q4 release empowers teams to continue embedding AI directly into their applications</strong>. New and enhanced AI components like the Inline AI Prompt, AI-optimized Chat UI and prompt-driven Data Grid bring natural language control to everyday user scenarios. Instead of clicking through multiple panels or configuring complex filters manually, users can simply ask: &ldquo;Show me all orders processed last month&rdquo; or &ldquo;Highlight anything above threshold.&rdquo; This is not AI for novelty; it&rsquo;s AI applied with purpose, enhancing the way both developers and end users interact with applications built on Telerik and Kendo UI.</p><p>AI-driven innovation only delivers value when it&rsquo;s matched with stability and long-term platform confidence. That&rsquo;s why Progress continues the tradition of <strong>day-zero compatibility with Microsoft&rsquo;s latest technologies with .NET 10 fully supported at launch</strong>.</p><p>Rounding out the productivity story, the 2025 Q4 release introduces <strong>AI-driven debugging capabilities in Fiddler Everywhere, expanding Progress&rsquo; MCP ecosystem beyond UI development.</strong> With <a target="_blank" href="https://www.youtube.com/watch?v=YO9EcwUSock">Fiddler MCP integration</a>, network traffic analysis and debugging data are available directly inside your IDE, enabling developers to quickly pinpoint performance bottlenecks, security issues or failed sessions. Combined with the new <strong>Debugging Assistant</strong>, Fiddler transforms the debugging journey into a guided, conversational experience that helps resolve issues faster and earlier in the development cycle.</p><h2 id="save-your-seat-for-the-webinars">Save Your Seat for the Webinars!</h2><p>Find out what&rsquo;s new in your favorite UI component libraries, reporting and debugging tools by joining our webinars!</p><p> Find the details and specific per product highlights in the webinar pages linked below. You can register for more than one webinar.</p><h3 id="progress-telerik-.net-web-desktop-and-mobile-2025-q4-release-webinar--december-3">Progress Telerik .NET Web, Desktop and Mobile 2025 Q4 Release Webinar | December 3</h3><p><a target="_blank" href="https://www.telerik.com/campaigns/telerik-2025-q4-release-webinar---web--desktop-and-mobile"><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-11/03-blog_-telerik_blog-inline_image_1200x628.png?sfvrsn=9f115b58_2" alt="Progress Telerik .NET Web, Desktop and Mobile 2025 Q4 Release Webinar, Wednesday, December 3, 11:00 a.m.-1:00 p.m. ET" /></a></p><p>Discover all updates across Telerik <a target="_blank" href="https://www.telerik.com/blazor-ui">UI for Blazor</a>, <a target="_blank" href="https://www.telerik.com/aspnet-core-ui">UI for ASP.NET Core</a>, <a target="_blank" href="https://www.telerik.com/aspnet-mvc">UI for ASP.NET MVC</a>, <a target="_blank" href="https://www.telerik.com/products/aspnet-ajax.aspx">UI for ASP.NET AJAX</a>, <a target="_blank" href="https://www.telerik.com/products/wpf/overview.aspx">UI for WPF</a>, <a target="_blank" href="https://www.telerik.com/products/winforms.aspx">UI for WinForms</a>, <a target="_blank" href="https://www.telerik.com/maui-ui">UI for .NET MAUI</a> and <a target="_blank" href="https://www.telerik.com/themebuilder">ThemeBuilder</a>. Tune in 11:00 a.m.&ndash;1:00 p.m. ET on Wednesday, June 3.</p><p><a href="https://www.telerik.com/campaigns/telerik-2025-q4-release-webinar---web--desktop-and-mobile" class="Btn" target="_blank">Save Your Seat</a></p><h3 id="progress-kendo-ui-2025-q4-release-webinar--december-4">Progress Kendo UI 2025 Q4 Release Webinar | December 4</h3><p><a href="https://www.telerik.com/campaigns/kendo-ui-2025-q4-release-webinar" target="_blank"><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-11/kendo-ui-kendoka_blog-inline_image_1200x628.png?sfvrsn=c7579d2d_2" alt="Progress Kendo UI 2025 Q4 Release Webinar, Thursday, December 4, 11:00 a.m.-1:00 p.m. ET" /></a></p><p>Discover all updates across <a href="https://www.telerik.com/kendo-react-ui" target="_blank">KendoReact</a> and <a href="https://www.telerik.com/kendo-angular-ui" target="_blank">Kendo UI for Angular</a>, <a href="https://www.telerik.com/kendo-vue-ui" target="_blank">Vue</a> and <a href="https://www.telerik.com/kendo-jquery-ui" target="_blank">jQuery</a>, as well as <a href="https://www.telerik.com/themebuilder" target="_blank">ThemeBuilder</a>. Tune in 11:00 a.m.&ndash;1:00 p.m. ET on Thursday, December 4.</p><p><a href="https://www.telerik.com/campaigns/kendo-ui-2025-q4-release-webinar" class="Btn" target="_blank">Save Your Seat</a></p><h3 id="progress-telerik-reporting-and-fiddler-2025-q4-release-webinar--december-5">Progress Telerik Reporting and Fiddler 2025 Q4 Release Webinar | December 5</h3><p><a href="https://www.telerik.com/campaigns/telerik-2025-q4-release-webinar---reporting-and-fiddler" target="_blank"><img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/blogs/2025/2025-11/03-blog_telerik_fiddler_blog-inline_image_1200x628.png?sfvrsn=fa35f5c0_2" alt="Progress Telerik Reporting and Fiddler 2025 Q4 Release Webinar, Friday, December 5, 11:00 a.m.-1:00 p.m. ET" /></a></p><p>Discover all updates across <a href="https://www.telerik.com/products/reporting.aspx" target="_blank">Telerik Reporting</a>, <a href="https://www.telerik.com/report-server" target="_blank">Report Server</a> and <a href="https://www.telerik.com/fiddler/fiddler-everywhere" target="_blank">Fiddler Everywhere.</a> Tune in 11:00 a.m.&ndash;1:00 p.m. ET Friday, December 5.</p><p><a href="https://www.telerik.com/campaigns/telerik-2025-q4-release-webinar---reporting-and-fiddler" class="Btn" target="_blank">Save Your Seat</a></p><h3 id="and-the-best-part-about-the-release-webinars">And the Best Part About the Release Webinars?</h3><p>The live webinars are a great opportunity for you to ask questions of the team. We&rsquo;ll be waiting to hear from you on X&mdash;just use the <strong>#heyTelerik</strong> and <strong>#heyKendoUI</strong> hashtags before and during the webinars.</p><p><strong>Sign up today to make sure you don&rsquo;t miss these great events with our experienced developer advocates and experts:</strong></p><ul><li><strong>Ed Charbeneau</strong>, Microsoft MVP, international speaker, writer, online influencer, Developer Advocate with a passion for .NET</li><li><strong>Alyssa Nicoll</strong>, Google Developer Expert and Angular Developer Advocate</li><li><strong>Kathryn Grayson Nanz</strong>, Developer Advocate with a passion for React, UI and design</li><li><strong>Rick Hellwege</strong>, Principal Sales Engineer, reporting guru and innovator with a passion for experimenting with the latest technologies and frameworks</li></ul><p><strong>Can&rsquo;t wait to see you soon!</strong></p><img src="https://feeds.telerik.com/link/23068/17202353.gif" height="1" width="1"/>]]></content>
  </entry>
</feed>
