Files

12 lines
295 B
C#
Raw Permalink Normal View History

2025-07-17 23:10:26 +08:00
using System.Text.Json.Serialization;
2025-08-11 15:31:11 +08:00
namespace Yi.Framework.AiHub.Domain.Shared.Dtos.OpenAi;
2025-07-17 23:10:26 +08:00
public class ThorChatClaudeThinking
{
[JsonPropertyName("type")]
public string? Type { get; set; }
[JsonPropertyName("budget_tokens")]
public int? BudgetToken { get; set; }
}