WIP
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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";
|
||||
}
|
||||
Reference in New Issue
Block a user