This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace AI.Interface
{
/// <summary>
/// 用于通知 UI 层添加消息的接口
/// </summary>
public interface IMessageNotifier
/// 通知添加一条工具调用消息到 UI(仅显示,不进入 AI 上下文)
/// <param name="message">消息内容</param>
void NotifyToolCall(string message);
}