BotSharp/src/Infrastructure/BotSharp.Abstraction/Evaluations/IExecutionLogger.cs
2023-10-22 19:31:49 -05:00

7 lines
139 B
C#

namespace BotSharp.Abstraction.Evaluations;
public interface IExecutionLogger
{
void Append(string conversationId, string context);
}