You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
734 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OllamaStudy.UseHttpClient.OllamaResponse
{
public class ResponseModel: ResponseBase
{
public DateTime modified_at { get; set; }
public long size { get; set; }
public string? digest { get; set; }
public ResponseModelDetails? details { get; set; }
}
public class ResponseModelDetails
{
public string? parent_model { get; set; }
public string? format { get; set; }
public List<string>? families { get; set; }
public string? parameter_size { get; set; }
public string? quantization_level { get; set; }
}
}