mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-19 16:06:36 +08:00
18 lines
443 B
C#
18 lines
443 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Shared.Dtos.OpenAi;
|
|
|
|
public class ThorResponseJsonSchema
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonPropertyName("description")]
|
|
public string? Description { get; set; }
|
|
|
|
[JsonPropertyName("strict")]
|
|
public bool? Strict { get; set; }
|
|
|
|
[JsonPropertyName("schema")]
|
|
public object Schema { get; set; }
|
|
} |