feat: AnthropicThinkingInput 新增 signature、thinking、data、text 字段

This commit is contained in:
ccnetcore
2025-10-26 10:38:01 +08:00
parent 1aaff2942d
commit 2efed4f4a5

View File

@@ -109,8 +109,15 @@ public sealed class AnthropicInput
public class AnthropicThinkingInput public class AnthropicThinkingInput
{ {
[JsonPropertyName("type")] public string? Type { get; set; } [JsonPropertyName("type")] public string? Type { get; set; }
[JsonPropertyName("budget_tokens")] public int? BudgetTokens { get; set; } [JsonPropertyName("budget_tokens")] public int? BudgetTokens { get; set; }
[JsonPropertyName("signature")] public string? Signature { get; set; }
[JsonPropertyName("thinking")] public string? Thinking { get; set; }
[JsonPropertyName("data")] public string? Data { get; set; }
[JsonPropertyName("text")] public string? Text { get; set; }
} }
public class AnthropicTooChoiceInput public class AnthropicTooChoiceInput