8 lines
236 B
C#
8 lines
236 B
C#
using Yi.Framework.AiHub.Application.Contracts.Dtos.OpenAi;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.AiGateWay;
|
|
|
|
public class SpecialCompatibleOptions
|
|
{
|
|
public List<Action<ThorChatCompletionsRequest>> Handles { get; set; } = new();
|
|
} |