<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/ai-file-search-in-blazor-file-manager-semantic-and-tag-based-p3mnhfaag" -->

---
title: AI File Search in Blazor File Manager: Semantic and...
description: A step-by-step guide to adding AI-powered file search to the Syncfusion Blazor File Manager using two approaches: semantic search via local embeddings...
canonical: https://daily.dev/posts/ai-file-search-in-blazor-file-manager-semantic-and-tag-based-p3mnhfaag
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: AI File Search in Blazor File Manager: Semantic and Tag-Based | daily.dev
og:description: A step-by-step guide to adding AI-powered file search to the Syncfusion Blazor File Manager using two approaches: semantic search via local embeddings...
og:url: https://daily.dev/posts/ai-file-search-in-blazor-file-manager-semantic-and-tag-based-p3mnhfaag
og:image: https://api.daily.dev/og/posts/p3mnhfAaG.png
og:image:alt: AI File Search in Blazor File Manager: Semantic and Tag-Based
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# AI File Search in Blazor File Manager: Semantic and Tag-Based

**[Syncfusion](https://daily.dev/sources/syncfusion)** · 10 min read · 0 upvotes · 0 comments

## Summary

A step-by-step guide to adding AI-powered file search to the Syncfusion Blazor File Manager using two approaches: semantic search via local embeddings (SmartComponents.LocalEmbeddings) and tag-based search with AI-generated tags via Azure OpenAI. Covers project setup, NuGet package installation, Program.cs configuration, wiring the Searching event, implementing similarity-threshold filtering (>0.35), and storing/retrieving tags using NTFS alternate data streams. Includes code snippets for both search strategies and links to a GitHub demo and live Syncfusion demos.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://www.syncfusion.com/blogs/post/ai-smart-search-blazor-file-manager>

## Similar posts on daily.dev

- [AI-Powered Content Summarization and File Organization in Blazor File Manager](https://daily.dev/posts/ai-powered-content-summarization-and-file-organization-in-blazor-file-manager-oxe9p6ouz) · Syncfusion · 1 upvotes · 0 comments
- [Build an AI Content Creation App in Blazor with AI AssistView](https://daily.dev/posts/build-an-ai-content-creation-app-in-blazor-with-ai-assistview-xzfs5mq7m) · Syncfusion · 0 upvotes · 0 comments

---

Tags: [#.net](https://daily.dev/tags/.net), [#blazor](https://daily.dev/tags/blazor), [#vector-search](https://daily.dev/tags/vector-search), [#azure-openai](https://daily.dev/tags/azure-openai)

[View this post on daily.dev](https://daily.dev/posts/ai-file-search-in-blazor-file-manager-semantic-and-tag-based-p3mnhfaag)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"AI File Search in Blazor File Manager: Semantic and Tag-Based","url":"https://daily.dev/posts/ai-file-search-in-blazor-file-manager-semantic-and-tag-based-p3mnhfaag","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/ai-file-search-in-blazor-file-manager-semantic-and-tag-based-p3mnhfaag"},"datePublished":"2026-04-17T12:08:00.701Z","dateModified":"2026-04-17T12:08:33.750Z","description":"A step-by-step guide to adding AI-powered file search to the Syncfusion Blazor File Manager using two approaches: semantic search via local embeddings...","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/9caee8971282caf07ac55d81b7d6074b?_a=AQAEuop","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/9caee8971282caf07ac55d81b7d6074b?_a=AQAEuop","isAccessibleForFree":true,"articleSection":"Syncfusion","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"Syncfusion","logo":"https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/064efc4834bd43b987bcda02e8ad6709","url":"https://daily.dev/sources/syncfusion"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/ai-file-search-in-blazor-file-manager-semantic-and-tag-based-p3mnhfaag","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":".net,blazor,vector-search,azure-openai","timeRequired":"PT10M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Syncfusion","item":"https://daily.dev/sources/syncfusion"},{"@type":"ListItem","position":3,"name":"AI File Search in Blazor File Manager: Semantic and Tag-Based"}]}
```

