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#

This file contains ambiguous Unicode characters!

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