13 lines
525 B
C#
13 lines
525 B
C#
namespace DocuMed.Infrastructure.Models.Metis;
|
|
|
|
public class MetisMessageResponse
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
public string Content { get; set; } = string.Empty;
|
|
public object Attachments { get; set; } = string.Empty;
|
|
public long Timestamp { get; set; }
|
|
public string FinishReason { get; set; } = string.Empty;
|
|
public object Citations { get; set; } = string.Empty;
|
|
public object ToolCalls { get; set; } = string.Empty;
|
|
} |