From 2efed4f4a5ee21ceff30c1cd92becadd9b4e8813 Mon Sep 17 00:00:00 2001 From: ccnetcore Date: Sun, 26 Oct 2025 10:38:01 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20AnthropicThinkingInput=20=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=20signature=E3=80=81thinking=E3=80=81data=E3=80=81tex?= =?UTF-8?q?t=20=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Dtos/Anthropic/AnthropicInput.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Domain.Shared/Dtos/Anthropic/AnthropicInput.cs b/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Domain.Shared/Dtos/Anthropic/AnthropicInput.cs index 891dae7b..12474b20 100644 --- a/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Domain.Shared/Dtos/Anthropic/AnthropicInput.cs +++ b/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Domain.Shared/Dtos/Anthropic/AnthropicInput.cs @@ -109,8 +109,15 @@ public sealed class AnthropicInput public class AnthropicThinkingInput { [JsonPropertyName("type")] public string? Type { 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