mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* .NET: Add a TODO AIContextProvider (#5233) * Add a TODO AIContextProvider * Add unit tests * Address PR comments * Address PR comments * Fix test after removing one tool * .NET: Add a ModeProvider for managing agent modes (#5247) * Add a ModeProvider for managing agent modes * Fix typo * Fix typo * Fix typo * Address PR comments * .NET: Add sample to show how to build a harness (#5268) * Add sample to show how to build a harness * Improve sample * Sample max output tokens and model * Fix encoding * Fix model name in readme * Address PR comments * .NET: Add context window size compaction strategy for harness (#5304) * Add context window size compaction strategy for harness * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Address PR comments --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * .NET: Add a file memory provider (#5315) * Add a file memory provider * Address PR comments * Fix review comments. * Add additional unit tests * Addressing PR comments. * .NET: Harness: Improve prompts and add FileSystem store (#5365) * Harness: Improve prompts and add FileSystem store * Address PR comments * .NET: Harness: Improve path validation (#5404) * Harness: Improve path validation * Address PR comments * .NET: Add always approve helpers, improve sample and fix bug (#5451) * Add always approve helpers, improve sample and fix bug * Address PR comments * .NET: Make Todo, Mode and FileMemory providers more configurable (#5477) * Make Todo, Mode and FileMemory providers more configurable * Address PR comments. * .NET: Add subagents provider and sample (#5518) * Add subagents provider and sample * Addressing PR comments. * .NET: Harness filememory index plus instructions consistency (#5540) * Add FileMemoryProvider index and improve instruction consistency * Address PR comments. * Address PR comments * Address PR comments. * Apply suggestion from @rogerbarreto Co-authored-by: Roger Barreto <19890735+rogerbarreto@users.noreply.github.com> --------- Co-authored-by: Roger Barreto <19890735+rogerbarreto@users.noreply.github.com> * .NET: Refactor harness console to be more extensible and easy to understand with better UX (#5573) * Refactor harness console to be more extensible and easy to understand with better UX. * Fix formatting issues. * Allow multiple clarifications in one response * Address PR comments * .NET: Add FileAccessProvdider and concurrency fix for FileMemoryProvider (#5583) * Add FileAccessProvdider and concurrency fix for FileMemoryProvider * Address PR comments --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Roger Barreto <19890735+rogerbarreto@users.noreply.github.com>
54 lines
2.2 KiB
C#
54 lines
2.2 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Text.Json.Serialization;
|
|
using Microsoft.Extensions.AI;
|
|
using Microsoft.Shared.DiagnosticIds;
|
|
|
|
namespace Microsoft.Agents.AI;
|
|
|
|
/// <summary>
|
|
/// Represents the persisted state of standing tool approval rules,
|
|
/// stored in the session's <see cref="AgentSessionStateBag"/>.
|
|
/// </summary>
|
|
[Experimental(DiagnosticIds.Experiments.AgentsAIExperiments)]
|
|
internal sealed class ToolApprovalState
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the list of standing approval rules.
|
|
/// </summary>
|
|
[JsonPropertyName("rules")]
|
|
public List<ToolApprovalRule> Rules { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of collected approval responses (both auto-approved and user-approved)
|
|
/// that are pending injection into the next inbound call to the inner agent.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>
|
|
/// Responses are collected during a queue cycle: when the inner agent returns multiple tool approval
|
|
/// requests, auto-approved ones and user-approved ones are accumulated here. Once all queued requests
|
|
/// are resolved, the collected responses are injected alongside the caller's messages so the inner
|
|
/// agent receives all tool responses together.
|
|
/// </para>
|
|
/// </remarks>
|
|
[JsonPropertyName("collectedApprovalResponses")]
|
|
public List<ToolApprovalResponseContent> CollectedApprovalResponses { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of queued tool approval requests that have not yet been
|
|
/// presented to the caller.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>
|
|
/// When the inner agent returns multiple unapproved tool approval requests, only the first
|
|
/// is returned to the caller. The remaining requests are stored here and presented one at a
|
|
/// time on subsequent calls, allowing the caller's "always approve" rules to take effect on
|
|
/// later items in the same batch.
|
|
/// </para>
|
|
/// </remarks>
|
|
[JsonPropertyName("queuedApprovalRequests")]
|
|
public List<ToolApprovalRequestContent> QueuedApprovalRequests { get; set; } = new();
|
|
}
|