Skip to content

Commit

Permalink
stashing wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rysweet committed Oct 15, 2024
1 parent 80c7a9f commit 0df244c
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

namespace Microsoft.AutoGen.Agents.Client;
public abstract class InferenceAgent<T> : AgentBase where T : class, new()
{
protected AgentState<T> _state;

public InferenceAgent(
IAgentContext context,
EventTypes typeRegistry
) : base(context, typeRegistry)
{
_state = new();
}

}

0 comments on commit 0df244c

Please sign in to comment.