mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
41d441420e
* Initial draft of actor runtime abstractions
15 lines
394 B
C#
15 lines
394 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Microsoft.Extensions.AI.Agents.Runtime;
|
|
|
|
/// <summary>
|
|
/// Base class for read operations that query an actor's internal state.
|
|
/// </summary>
|
|
public abstract class ActorStateReadOperation : ActorReadOperation
|
|
{
|
|
/// <summary>Prevent external derivations.</summary>
|
|
private protected ActorStateReadOperation()
|
|
{
|
|
}
|
|
}
|