BotSharp/src/Infrastructure/BotSharp.Abstraction/Evaluations/IExecutionLogger.cs

7 lines
139 B
C#
Raw Normal View History

2023-10-23 00:31:49 +00:00
namespace BotSharp.Abstraction.Evaluations;
public interface IExecutionLogger
{
void Append(string conversationId, string context);
}