Files
Yi.Admin/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Domain/Mcp/DeepThinkTool.cs

15 lines
349 B
C#
Raw Normal View History

2025-12-22 00:17:10 +08:00
using System.ComponentModel;
using ModelContextProtocol.Server;
using Volo.Abp.DependencyInjection;
namespace Yi.Framework.AiHub.Domain.Mcp;
[McpServerToolType]
public class DeepThinkTool:ISingletonDependency
{
2025-12-24 14:17:32 +08:00
[McpServerTool, Description("进行深度思考"),DisplayName("深度思考")]
2025-12-22 00:17:10 +08:00
public void DeepThink()
{
}
}