mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
401a552735
* feat: Add DelegatingAgentSessionStore Add helper for decorator pattern for AgentSessionStore * feat: Add UserIdentityScopedSessionStore Add support for using the ASP.Net Core ambient `ClaimsIdentity` User, along with a user-specified claim type to scope the session store based on authenticated identity. * fix: Harden scope mapping * fix: Add UserIdentityScopeSessionStoreOptions to avoid future breaking changes * Split UserIdentityScopedSessionStore into a separate IsolationKeyProvider and IsolationKeyScopedSessionStore * Add GetService<>() capabilities to interrogate AgentSessionStore delegation chain * Harden default for A2A hosting by using an IsolationKeyScopedAgentSessionStore when no store is available. * Pipe isolation through Hosting helper extension methods * Add comment to samples about adding SessionIsolationKeyProvider * Fix isolation key provider nullability semantics * fix A2A defaults * fixup * remove unneeded keyProvider requirement test * Add trust-model XML docs to AgentSessionStore, InMemoryAgentSessionStore, MapAGUI, A2A entry points Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/e466c53a-faad-40a8-8b5f-83cf0dce0b1d Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * fix: Switch ClaimsBasedIsolationKeyProvider to be Singleton * matches HttpContextAccessor and related MAF services * release: Ensure new project is in the release filter * fixup: Integraitaon tests --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com>
26 lines
1.1 KiB
C#
26 lines
1.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Microsoft.Agents.AI.Hosting;
|
|
|
|
/// <summary>
|
|
/// Options for configuring <see cref="IsolationKeyScopedAgentSessionStore"/>.
|
|
/// </summary>
|
|
public class IsolationKeyScopedAgentSessionStoreOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether an exception should be thrown when the isolation key cannot be determined.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>
|
|
/// If <see langword="true"/> (default), the store will throw an <see cref="System.InvalidOperationException"/>
|
|
/// when <see cref="SessionIsolationKeyProvider.GetSessionIsolationKeyAsync"/> returns <see langword="null"/>.
|
|
/// </para>
|
|
/// <para>
|
|
/// If <see langword="false"/>, the conversation ID is passed through unmodified when the isolation key is absent,
|
|
/// allowing unscoped access to the underlying session store. This mode is suitable for development scenarios
|
|
/// or mixed environments where not all requests have isolation keys.
|
|
/// </para>
|
|
/// </remarks>
|
|
public bool Strict { get; set; } = true;
|
|
}
|