7 lines
139 B
C#
7 lines
139 B
C#
namespace BotSharp.Abstraction.Evaluations;
|
|
|
|
public interface IExecutionLogger
|
|
{
|
|
void Append(string conversationId, string context);
|
|
}
|