Files
darman 63818df4b5 Add Luna.Configuration with TOML-based agent and provider config
Implement configuration system with embedded TOML resources for agent
and provider definitions, custom IConfigurationSource/Provider for
agent and provider options, and DI extension methods. Includes config
models for agents, providers, sessions, and Telegram integration.
2026-04-04 04:09:57 +02:00

8 lines
212 B
C#

namespace Luna.Configuration;
public class ProviderOptions
{
public required string ApiKey { get; init; }
public required string ApiUrl { get; init; }
public required string[] Models { get; init; }
}