Merge remote-tracking branch 'origin/ai-hub' into ai-hub

This commit is contained in:
chenchun
2025-10-28 16:13:13 +08:00
2 changed files with 10 additions and 1 deletions

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

View File

@@ -20,6 +20,8 @@ public class AnthropicMessageContent
[JsonPropertyName("thinking")] public string? Thinking { get; set; } [JsonPropertyName("thinking")] public string? Thinking { get; set; }
[JsonPropertyName("signature")] public string? Signature { get; set; }
[JsonPropertyName("input")] public object? Input { get; set; } [JsonPropertyName("input")] public object? Input { get; set; }
[JsonPropertyName("content")] [JsonPropertyName("content")]