12 lines
540 B
C#
12 lines
540 B
C#
namespace ROLAC.API.Services.Ai;
|
|
|
|
/// <summary>Anthropic Claude API settings (bound from the "Claude" config section).</summary>
|
|
public sealed class ClaudeOptions
|
|
{
|
|
/// <summary>API key sent as the <c>x-api-key</c> header. Keep out of source control.</summary>
|
|
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";
|
|
}
|