Azure AI 项目 .NET
Azure.AI.Projects (.NET)
用于 Azure AI Foundry 项目操作的高级 SDK,包括代理 (agents)、连接、数据集、部署、评估和索引。
安装
dotnet add package Azure.AI.Projects
dotnet add package Azure.Identity
可选:用于带有 OpenAI 扩展的版本化代理
dotnet add package Azure.AI.Projects.OpenAI --prerelease
可选:用于低级代理操作
dotnet add package Azure.AI.Agents.Persistent --prerelease当前版本:GA v1.1.0, Preview v1.2.0-beta.5
环境变量
PROJECT_ENDPOINT=https://<resource>.services.ai.azure.com/api/projects/<project>
MODEL_DEPLOYMENT_NAME=gpt-4o-mini
CONNECTION_NAME=<your-connection-name>
AI_SEARCH_CONNECTION_NAME=<ai-search-connection>身份验证
using Azure.Identity;
using Azure.AI.Projects;
var endpoint = Environment.GetEnvironmentVariable("PROJECT_ENDPOINT");
AIProjectClient projectClient = new AIProjectClient(
new Uri(endpoint),
new DefaultAzureCredential());
客户端层级结构
AIProjectClient
├── Agents → AIProjectAgentsOperations (版本化代理)
├── Connections → ConnectionsClient
├── Datasets → DatasetsClient
├── Deployments → DeploymentsClient
├── Evaluations → EvaluationsClient
├── Evaluators → EvaluatorsClient
├── Indexes → IndexesClient
├── Telemetry → AIProjectTelemetry
├── OpenAI → ProjectOpenAIClient (预览版)
└── GetPersistentAgentsClient() → PersistentAgentsClient核心工作流
1. 获取持久化代理客户端 (Persistent Agents Client)
// 从项目客户端获取低级代理客户端
PersistentAgentsClient agentsClient = projectClient.GetPersistentAgentsClient();
// 创建代理
PersistentAgent agent = await agentsClient.Administration.CreateAgentAsync(
model: "gpt-4o-mini",
name: "Math Tutor",
instructions: "You are a personal math tutor.");
// 创建线程并运行
PersistentAgentThread thread = await agentsClient.Threads.CreateThreadAsync();
await agentsClient.Messages.CreateMessageAsync(thread.Id, MessageRole.User, "Solve 3x + 11 = 14");
ThreadRun run = await agentsClient.Runs.CreateRunAsync(thread.Id, agent.Id);
// 轮询直到完成
do
{
await Task.Delay(500);
run = await agentsClient.Runs.GetRunAsync(thread.Id, run.Id);
}
while (run.Status == RunStatus.Queued || run.Status == RunStatus.InProgress);
// 获取消息
await foreach (var msg in agentsClient.Messages.GetMessagesAsync(thread.Id))
{
foreach (var content in msg.ContentItems)
{
if (content is MessageTextContent textContent)
Console.WriteLine(textContent.Text);
}
}
// 清理
await agentsClient.Threads.DeleteThreadAsync(thread.Id);
await agentsClient.Administration.DeleteAgentAsync(agent.Id);
2. 带有工具的版本化代理 (预览版)
using Azure.AI.Projects.OpenAI;
// 创建带有 Web 搜索工具的代理
PromptAgentDefinition agentDefinition = new(model: "gpt-4o-mini")
{
Instructions = "You are a helpful assistant that can search the web",
Tools = {
ResponseTool.CreateWebSearchTool(
userLocation: WebSearchToolLocation.CreateApproximateLocation(
c
ountry: "US",
city: "Seattle",
region: "Washington"
)
),
}
};
AgentVersion agentVersion = await projectClient.Agents.CreateAgentVersionAsync(
agentName: "myAgent",
options: new(agentDefinition));
// 获取响应客户端
ProjectResponsesClient responseClient = projectClient.OpenAI.GetProjectResponsesClientForAgent(agentVersion.Name);
// 创建响应
ResponseResult response = responseClient.CreateResponse("What's the weather in Seattle?");
Console.WriteLine(response.GetOutputText());
// 清理
projectClient.Agents.DeleteAgentVersion(agentName: agentVersion.Name, agentVersion: agentVersion.Version);
### 3. 连接 (Connections)// 列出所有连接
foreach (AIProjectConnection connection in projectClient.Connections.GetConnections())
{
Console.WriteLine($"{connection.Name}: {connection.ConnectionType}");
}
// 获取特定连接
AIProjectConnection conn = projectClient.Connections.GetConnection(
connectionName,
includeCredentials: true);
// 获取默认连接
AIProjectConnection defaultConn = projectClient.Connections.GetDefaultConnection(
includeCredentials: false);
### 4. 部署 (Deployments)// 列出所有部署
foreach (AIProjectDeployment deployment in projectClient.Deployments.GetDeployments())
{
Console.WriteLine($"{deployment.Name}: {deployment.ModelName}");
}
// 按发布者过滤
foreach (var deployment in projectClient.Deployments.GetDeployments(modelPublisher: "Microsoft"))
{
Console.WriteLine(deployment.Name);
}
// 获取特定部署
ModelDeployment details = (ModelDeployment)projectClient.Deployments.GetDeployment("gpt-4o-mini");
### 5. 数据集 (Datasets)// 上传单个文件
FileDataset fileDataset = projectClient.Datasets.UploadFile(
name: "my-dataset",
version: "1.0",
filePath: "data/training.txt",
connectionName: connectionName);
// 上传文件夹
FolderDataset folderDataset = projectClient.Datasets.UploadFolder(
name: "my-dataset",
version: "2.0",
folderPath: "data/training",
connectionName: connectionName,
filePattern: new Regex(".*\\.txt"));
// 获取数据集
AIProjectDataset dataset = projectClient.Datasets.GetDataset("my-dataset", "1.0");
// 删除数据集
projectClient.Datasets.Delete("my-dataset", "1.0");
### 6. 索引 (Indexes)// 创建 Azure AI Search 索引
AzureAISearchIndex searchIndex = new(aiSearchConnectionName, aiSearchIndexName)
{
Description = "Sample Index"
};
searchIndex = (AzureAISearchIndex)projectClient.Indexes.CreateOrUpdate(
name: "my-index",
version: "1.0",
index: searchIndex);
// 列出索引
foreach (AIProjectIndex index in projectClient.Indexes.GetIndexes())
{
Console.WriteLine(index.Name);
}
// 删除索引
projectClient.Indexes.Delete(name: "my-index", version: "1.0");
### 7. 评估 (Evaluations)// 创建评估配置
var evaluatorConfig = new EvaluatorConfiguration(id: EvaluatorIDs.Relevance);
evaluatorConfig.InitParams.Add("deployment_name", BinaryData.FromObjectAsJson("gpt-4o"));
// 创建评估
Evaluation evaluation = new Evaluation(
data: new InputDataset("<dataset_id>"),
evaluators: new Dictionary<string, EvaluatorConfiguration>
{
{ "relevance", evaluatorConfig }
}
)
{
DisplayName = "Sample Evaluation"
};
// 运行评估
Evaluation result = projectClient.Evaluations.Create(evaluation: evaluation);
// 获取评估
Evaluatio
n getResult = projectClient.Evaluations.Get(result.Name);
// 列出评估
foreach (var eval in projectClient.Evaluations.GetAll())
{
Console.WriteLine($"{eval.DisplayName}: {eval.Status}");
}
8. 获取 Azure OpenAI Chat 客户端
using Azure.AI.OpenAI;
using OpenAI.Chat;
ClientConnection connection = projectClient.GetConnection(typeof(AzureOpenAIClient).FullName!);
if (!connection.TryGetLocatorAsUri(out Uri uri) || uri is null)
throw new InvalidOperationException("Invalid URI.");
uri = new Uri($"https://{uri.Host}");
AzureOpenAIClient azureOpenAIClient = new AzureOpenAIClient(uri, new DefaultAzureCredential());
ChatClient chatClient = azureOpenAIClient.GetChatClient("gpt-4o-mini");
ChatCompletion result = chatClient.CompleteChat("List all rainbow colors");
Console.WriteLine(result.Content[0].Text);
可用 Agent 工具
| 工具 | 类 | 用途 |
|------|-------|---------|
| 代码解释器 (Code Interpreter) | CodeInterpreterToolDefinition | 执行 Python 代码 |
| 文件搜索 (File Search) | FileSearchToolDefinition | 搜索上传的文件 |
| 函数调用 (Function Calling) | FunctionToolDefinition | 调用自定义函数 |
| Bing 检索 (Bing Grounding) | BingGroundingToolDefinition | 通过 Bing 进行网页搜索 |
| Azure AI Search | AzureAISearchToolDefinition | 搜索 Azure AI 索引 |
| OpenAPI | OpenApiToolDefinition | 调用外部 API |
| Azure Functions | AzureFunctionToolDefinition | 调用 Azure Functions |
| MCP | MCPToolDefinition | 模型上下文协议 (Model Context Protocol) 工具 |
关键类型参考
| 类型 | 用途 |
|------|---------|
| AIProjectClient | 主入口点 |
| PersistentAgentsClient | 低级 Agent 操作 |
| PromptAgentDefinition | 带版本的 Agent 定义 |
| AgentVersion | 带版本的 Agent 实例 |
| AIProjectConnection | 到 Azure 资源的连接 |
| AIProjectDeployment | 模型部署信息 |
| AIProjectDataset | 数据集元数据 |
| AIProjectIndex | 搜索索引元数据 |
| Evaluation | 评估配置与结果 |
最佳实践
1. 生产环境身份验证:使用 DefaultAzureCredential。
2. I/O 操作:所有 I/O 操作均使用异步方法 (*Async)。
3. 轮询等待:在等待运行结果时,请使用适当的延迟(建议 500ms)。
4. 资源清理:完成后删除线程、Agent 和文件。
5. 生产场景:使用带版本的 Agent(通过 Azure.AI.Projects.OpenAI)。
6. 工具配置:存储连接 ID 而非名称。
7. 凭据获取:仅在确实需要凭据时设置 includeCredentials: true。
8. 分页处理:在列出操作中使用 AsyncPageable<T>。
错误处理
using Azure;
try
{
var result = await projectClient.Evaluations.CreateAsync(evaluation);
}
catch (RequestFailedException ex)
{
Console.WriteLine($"Error: {ex.Status} - {ex.ErrorCode}: {ex.Message}");
}
相关 SDK
| SDK | 用途 | 安装命令 |
|-----|---------|---------|
| Azure.AI.Projects | 高级项目客户端 (本 SDK) | dotnet add package Azure.AI.Projects |
| Azure.AI.Agents.Persistent | 低级 Agent 操作 | dotnet add package Azure.AI.Agents.Persistent |
| Azure.AI.Projects.OpenAI | 结合 OpenAI 的带版本 Agent | dotnet add package Azure.AI.Projects.OpenAI |
参考链接
| 资源 | URL |
|----------|-----|
| NuGet 包 | https://www.nuget.org/packages/Azure.AI.Projects |
| API 参考 | https://learn.microsoft.com/dotnet/api/azure.ai.projects |
| GitHub 源码 | https://github.com/Azure/azur
e-sdk-for-net/tree/main/sdk/ai/Azure.AI.Projects |
| 示例 | https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/ai/Azure.AI.Projects/samples |
使用场景
本技能适用于执行概览中所描述的工作流或操作。局限性
- 仅在任务明确符合上述范围时使用此技能。
- 不要将输出结果视为针对特定环境的验证、测试或专家评审的替代方案。
- 如果缺少必要的输入、权限、安全边界或成功标准,请停止操作并寻求澄清。