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