Files
Yi.Admin/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Domain/AiGateWay/SpecialCompatibleOptions.cs

10 lines
363 B
C#
Raw Normal View History

2025-10-11 15:25:43 +08:00
using Yi.Framework.AiHub.Domain.Shared.Dtos.Anthropic;
using Yi.Framework.AiHub.Domain.Shared.Dtos.OpenAi;
2025-07-18 20:46:30 +08:00
namespace Yi.Framework.AiHub.Domain.AiGateWay;
public class SpecialCompatibleOptions
{
public List<Action<ThorChatCompletionsRequest>> Handles { get; set; } = new();
2025-10-11 15:25:43 +08:00
public List<Action<AnthropicInput>> AnthropicHandles { get; set; } = new();
2025-07-18 20:46:30 +08:00
}