网站首页 网站源码
using Microsoft.Extensions.DependencyInjection;
namespace Dpz.Core.Service.Network;
public static class NetworkServiceExtensions
{
public static IServiceCollection AddNetworkServices(this IServiceCollection services)
{
services
.AddHttpClient<ChatCompletionService>()
.ConfigurePrimaryHttpMessageHandler(_ => new HttpClientHandler
{
ServerCertificateCustomValidationCallback = (_, _, _, _) => true,
});
return services;
}
}
