namespace OpenQuery.Models; public class ParallelProcessingOptions { public int MaxConcurrentArticleFetches { get; set; } = 10; public int MaxConcurrentEmbeddingRequests { get; set; } = 4; public int EmbeddingBatchSize { get; set; } = 300; }