mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-18 07:26:37 +08:00
15 lines
349 B
C#
15 lines
349 B
C#
using System.ComponentModel;
|
|
using ModelContextProtocol.Server;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Mcp;
|
|
|
|
[McpServerToolType]
|
|
public class DeepThinkTool:ISingletonDependency
|
|
{
|
|
[McpServerTool, Description("进行深度思考"),DisplayName("深度思考")]
|
|
public void DeepThink()
|
|
{
|
|
|
|
}
|
|
} |