mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-22 09:26:36 +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; }
|
|||
|
|
}
|
|||
|
|
}
|