ict.shenzhi/Assets/deepseek/Runtime/Data/ChatCompletionRequest.cs

14 lines
291 B
C#

using System.Collections.Generic;
namespace YagizEraslan.DeepSeek.Unity
{
[System.Serializable]
public class ChatCompletionRequest
{
public string model;
public ChatMessage[] messages;
public float temperature = 0.7f;
public bool stream;
}
}