We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91fb7b9 + 8f7cfd2 commit 57ccc96Copy full SHA for 57ccc96
src/OllamaSharp/Constants/Application.cs
@@ -106,4 +106,5 @@ internal static class Application
106
public const string Adapters = "adapters";
107
public const string Files = "files";
108
public const string From = "from";
109
+ public const string Capabilities = "capabilities";
110
}
src/OllamaSharp/Models/ShowModel.cs
@@ -69,6 +69,12 @@ public class ShowModelResponse
69
/// </summary>
70
[JsonPropertyName(Application.Projector)]
71
public ProjectorInfo? Projector { get; set; } = null!;
72
+
73
+ /// <summary>
74
+ /// Gets or sets model capabilities such as completion and vision.
75
+ /// </summary>
76
+ [JsonPropertyName(Application.Capabilities)]
77
+ public string[]? Capabilities { get; set; } = null!;
78
79
80
/// <summary>
0 commit comments