Files
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

34 lines
820 B
C#

// Copyright (c) Microsoft. All rights reserved.
using System.ComponentModel.DataAnnotations;
namespace ChatWithAgent.Configuration;
/// <summary>
/// Contains settings to control the RAG experience.
/// </summary>
public sealed class RagConfig
{
/// <summary>
/// Configuration section name.
/// </summary>
public const string ConfigSectionName = "RagConfig";
/// <summary>
/// The AI embeddings service to use.
/// </summary>
[Required]
public string AIEmbeddingService { get; set; } = string.Empty;
/// <summary>
/// Type of the vector store.
/// </summary>
[Required]
public string VectorStoreType { get; set; } = string.Empty;
/// <summary>
/// The name of the collection.
/// </summary>
public string? CollectionName { get; set; }
}