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