azure-search-documents-dotnet

仓库创建 2026年1月17日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由

适合需要企业级搜索与向量检索的应用开发者。

▸ 风险提示

需要 Azure 访问凭据与网络访问权限。

这个 Skill 做什么

用于在 .NET 中构建全文、向量与语义混合检索应用。

在 .NET 里帮你做全文、向量和语义混合检索的应用开发,能同时处理文本检索和向量搜索。平时要做搜索功能、管理索引或跑索引器时会用,SearchClient 用来查和增删文档,SearchIndexClient/Indexer 管理索引和管道。特别之处是把全文、向量和语义检索混合起来,方便做召回加语义重排序的复杂场景。

▸ 展开 SKILL.md 英文原文

Azure AI Search SDK for .NET (Azure.Search.Documents). Use for building search applications with full-text, vector, semantic, and hybrid search. Covers SearchClient (queries, document CRUD), SearchIndexClient (index management), and SearchIndexerClient (indexers, skillsets). Triggers: "Azure Search .NET", "SearchClient", "SearchIndexClient", "vector search C#", "semantic search .NET", "hybrid search", "Azure.Search.Documents".

开发编程Azure搜索.NET向量检索通用
2.7k
Stars
304
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/microsoft/skills/main/.github/plugins/azure-sdk-dotnet/skills/azure-search-documents-dotnet/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/microsoft/skills/main/.github/plugins/azure-sdk-dotnet/skills/azure-search-documents-dotnet/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Azure.Search.Documents (.NET)

Build search applications with full-text, vector, semantic, and hybrid search capabilities.

## Installation

```bash
dotnet add package Azure.Search.Documents
dotnet add package Azure.Identity
```

**Current Versions**: Stable v11.7.0, Preview v11.8.0-beta.1

## Environment Variables

```bash
SEARCH_ENDPOINT=https://<search-service>.search.windows.net  # Required: search service endpoint
SEARCH_INDEX_NAME=<index-name>  # Required: search index name
AZURE_TOKEN_CREDENTIALS=prod  # Required only if DefaultAzureCredential is used in production
SEARCH_API_KEY=<api-key>  # Only required for AzureKeyCredential auth
```

## Authentication

**Microsoft Entra Token C
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有