You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kev/Drawer/AI/Interface/IMessageNotifier.cs

15 lines
406 B
C#

1 month ago
namespace AI.Interface
{
/// <summary>
/// 用于通知 UI 层添加消息的接口
/// </summary>
public interface IMessageNotifier
{
/// <summary>
/// 通知添加一条工具调用消息到 UI仅显示不进入 AI 上下文)
/// </summary>
/// <param name="message">消息内容</param>
void NotifyToolCall(string message);
}
}