Table of Contents

Class Parameters

Namespace
OllamaSharp.Models.Chat
Assembly
OllamaSharp.dll

Represents the parameters required by a function, including their properties and required fields.

public class Parameters
Inheritance
Parameters
Inherited Members

Properties

Properties

Gets or sets the properties of the parameters with their respective types and descriptions.

[JsonPropertyName("properties")]
public Dictionary<string, Property>? Properties { get; set; }

Property Value

Dictionary<string, Property>

Required

Gets or sets a list of required fields within the parameters.

[JsonPropertyName("required")]
public IEnumerable<string>? Required { get; set; }

Property Value

IEnumerable<string>