mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-16 14:36:37 +08:00
11 lines
241 B
C#
11 lines
241 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.OpenAi
|
|
{
|
|
public class ThorToolChoiceFunctionTool
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|