mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-28 12:13:26 +08:00
15 lines
327 B
C#
15 lines
327 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
using ModelContextProtocol.Server;
|
|||
|
|
using Volo.Abp.DependencyInjection;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.AiHub.Domain.Mcp;
|
|||
|
|
|
|||
|
|
[McpServerToolType]
|
|||
|
|
public class OnlineSearchTool:ISingletonDependency
|
|||
|
|
{
|
|||
|
|
[McpServerTool, Description("进行在线搜索")]
|
|||
|
|
public void OnlineSearch()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|