15 lines
457 B
C#
15 lines
457 B
C#
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.SemanticKernel;
|
|
using Yi.Framework.Core.Options;
|
|
|
|
namespace Yi.Framework.SemanticKernel;
|
|
|
|
public class YiFrameworkSemanticKernelModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
var configuration = context.Services.GetConfiguration();
|
|
var services = context.Services;
|
|
}
|
|
} |