namespace ROLAC.API.Services.Ai; /// Anthropic Claude API settings (bound from the "Claude" config section). public sealed class ClaudeOptions { /// API key sent as the x-api-key header. Keep out of source control. public string ApiKey { get; set; } = ""; public string Model { get; set; } = "claude-opus-4-8"; public string BaseUrl { get; set; } = "https://api.anthropic.com/v1"; public string AnthropicVersion { get; set; } = "2023-06-01"; }