Class ShowModelRequest
- Namespace
- OllamaSharp.Models
- Assembly
- OllamaSharp.dll
Show information about a model including details, modelfile, template, parameters, license, system prompt.
Ollama API docs
[JsonUnmappedMemberHandling(JsonUnmappedMemberHandling.Skip)]
public class ShowModelRequest : OllamaRequest
- Inheritance
-
ShowModelRequest
- Inherited Members
Properties
Model
Gets or sets the name of the model to show.
[JsonPropertyName("model")]
public string? Model { get; set; }
Property Value
Verbose
Gets or sets a value indicating whether to return full data for verbose response fields (e.g. tokenizer data).
[JsonPropertyName("verbose")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public bool? Verbose { get; set; }
Property Value
- bool?