| Name | Message | Date |
|---|---|---|
| 📄 FoundryLocalChatClient.cs | 1 month ago | |
| 📄 FoundryLocalLoggerExtensions.cs | 1 month ago | |
| 📄 FoundryLocalOptions.cs | 1 month ago | |
| 📄 FoundryLocalServiceCollectionExtensions.cs | 1 month ago |
📄
src/Reviewer.Cli/FoundryLocal/FoundryLocalOptions.cs
using System.ComponentModel.DataAnnotations; using Microsoft.Extensions.Options; namespace Reviewer.Cli.FoundryLocal; internal sealed class FoundryLocalOptions { [Required] public required string Model { get; set; } } [OptionsValidator] internal sealed partial class FoundryLocalOptionsValidator : IValidateOptions<FoundryLocalOptions>;