28 lines
685 B
C#
28 lines
685 B
C#
namespace BLAIzor.Models
|
|
{
|
|
public class StreamedResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string Object { get; set; }
|
|
public long Created { get; set; }
|
|
public string Model { get; set; }
|
|
public string SystemFingerprint { get; set; }
|
|
public List<Choice> Choices { get; set; }
|
|
|
|
public class Choice
|
|
{
|
|
public int Index { get; set; }
|
|
public Delta Delta { get; set; }
|
|
public object Logprobs { get; set; }
|
|
public string FinishReason { get; set; }
|
|
}
|
|
|
|
public class Delta
|
|
{
|
|
public string Content { get; set; }
|
|
}
|
|
}
|
|
|
|
}
|
|
|