AIMA-CSharp / Agent /Environment /IEnvironmentViewNotifier.cs
ewdlop's picture
Upload folder using huggingface_hub
90ca39a verified
namespace AIMA.Agent.Environment
{
public interface IEnvironmentViewNotifier
{
void NotifyViews(string msg);
}
}