Class AnthropicService
public class AnthropicService : AIService, IAIService, IFunctionRegisterable
- Inheritance
-
AnthropicService
- Implements
- Inherited Members
- Extension Methods
Constructors
AnthropicService(string, HttpClient)
public AnthropicService(string apiKey, HttpClient httpClient)
Parameters
apiKeystringhttpClientHttpClient
AnthropicService(string, string, HttpClient)
Creates a AnthropicService with a specific model.
public AnthropicService(string apiKey, string model, HttpClient httpClient)
Parameters
apiKeystringmodelstringhttpClientHttpClient
Properties
LastThinkingContent
Contains the thinking/reasoning content from the last non-streaming API call. Only populated when ThinkingBudget is enabled (>= 1024).
public string? LastThinkingContent { get; }
Property Value
Provider
The AI provider for this service
public override string Provider { get; }
Property Value
SupportsExtendedThinking
Returns true if the current model supports extended thinking. Supported: Claude Sonnet 4+, Claude Opus 4+, Claude Haiku 4.5+
public bool SupportsExtendedThinking { get; }
Property Value
ThinkingBudget
Controls the thinking token budget for Claude extended thinking. -1: Disabled (default) - no extended thinking 1024+: Specific token budget (must be less than MaxTokens) Supported models: Claude Sonnet 4+, Claude Opus 4+, Claude Haiku 4.5+ Note: When thinking is enabled, temperature is automatically set to 1 (Claude requirement).
public int ThinkingBudget { get; set; }
Property Value
Methods
ApplyProviderSpecificRequestProfile(AIRequestProfile)
protected override Action ApplyProviderSpecificRequestProfile(AIRequestProfile profile)
Parameters
profileAIRequestProfile
Returns
CreateFunctionMessageRequest()
Creates HTTP request with function definitions
protected override HttpRequestMessage CreateFunctionMessageRequest()
Returns
CreateMessageRequest()
Creates the HTTP request message for the AI service
protected override HttpRequestMessage CreateMessageRequest()
Returns
CreateMessageWithImageUrl(string, string)
Downloads an image from URL and converts to base64 for Claude
public Task<Message> CreateMessageWithImageUrl(string prompt, string imageUrl)
Parameters
Returns
ExtractFunctionCall(string)
Extracts function call from API response
protected override (string content, FunctionCall functionCall) ExtractFunctionCall(string response)
Parameters
responsestring
Returns
ExtractResponseContent(string)
Extracts the response content from the API response
protected override string ExtractResponseContent(string responseContent)
Parameters
responseContentstring
Returns
GenerateImageAsync(string, string)
Claude doesn't support image generation
public override Task<byte[]> GenerateImageAsync(string prompt, string size = "1024x1024")
Parameters
Returns
GenerateImageUrlAsync(string, string)
Claude doesn't support image generation
public override Task<string> GenerateImageUrlAsync(string prompt, string size = "1024x1024")
Parameters
Returns
GetCompletionAsync(Message)
public override Task<string> GetCompletionAsync(Message message)
Parameters
messageMessage
Returns
GetCompletionWithImageAsync(string, string)
public override Task<string> GetCompletionWithImageAsync(string prompt, string imagePath)
Parameters
Returns
GetInputTokenCountAsync()
Gets the token count for the current conversation
public override Task<uint> GetInputTokenCountAsync()
Returns
GetInputTokenCountAsync(string)
Gets the token count for a specific prompt
public override Task<uint> GetInputTokenCountAsync(string prompt)
Parameters
promptstring
Returns
GetModelMaxOutputTokens()
Returns the maximum output tokens allowed for the current model. Override in each service to provide model-specific limits.
protected override uint GetModelMaxOutputTokens()
Returns
StreamCompletionAsync(Message, Func<string, Task>)
public override Task StreamCompletionAsync(Message message, Func<string, Task> messageReceivedAsync)
Parameters
Returns
StreamParseJson(string)
Parses streaming JSON data
protected override string StreamParseJson(string jsonData)
Parameters
jsonDatastring
Returns
StreamRoundAsync(StreamOptions, bool, FunctionCallingPolicy, CancellationToken)
Executes a single streaming round: sends an HTTP request, reads the SSE stream, yields chunks, and handles function execution if detected. Yield a FunctionResult to signal the template to continue to the next round; otherwise the stream ends.
protected override IAsyncEnumerable<StreamingContent> StreamRoundAsync(StreamOptions options, bool useFunctions, FunctionCallingPolicy policy, CancellationToken cancellationToken)
Parameters
optionsStreamOptionsuseFunctionsboolpolicyFunctionCallingPolicycancellationTokenCancellationToken
Returns
WithClaudeParameters(int?)
Sets Claude-specific parameters
public AnthropicService WithClaudeParameters(int? topK = null)
Parameters
topKint?
Returns
WithConstitutionalAI(bool)
Enables or disables Claude's constitutional AI features
public AnthropicService WithConstitutionalAI(bool enabled = true)
Parameters
enabledbool
Returns
WithTemperaturePreset(TemperaturePreset)
Sets temperature for different use cases
public AnthropicService WithTemperaturePreset(TemperaturePreset preset)
Parameters
presetTemperaturePreset
Returns
WithThinkingParameters(int)
Sets Claude extended thinking parameters. Budget must be >= 1024 and less than MaxTokens. When thinking is enabled, temperature is automatically forced to 1.
public AnthropicService WithThinkingParameters(int budgetTokens)
Parameters
budgetTokensint