Add IUnboundSubscriptionDefinition

This commit is contained in:
Jack Gerrits 2025-01-27 12:25:04 -05:00 committed by Jack Gerrits
parent f8325e5907
commit b0d268fae2

View File

@ -0,0 +1,10 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// IUnboundSubscriptionDefinition.cs
namespace Microsoft.AutoGen.Contracts.Python;
public interface IUnboundSubscriptionDefinition
{
public ISubscriptionDefinition Bind(AgentType agentType);
}