Class EmbeddingProvider.Parameter
Describes a configuration parameter for an EmbeddingProvider or one of its models.
public class EmbeddingProvider.Parameter
- Inheritance
-
EmbeddingProvider.Parameter
- Inherited Members
Properties
DefaultValue
The default value for this parameter, if any.
public string DefaultValue { get; set; }
Property Value
DisplayName
The human-readable display name of the parameter.
public string DisplayName { get; set; }
Property Value
Help
Help text describing the purpose of the parameter.
public string Help { get; set; }
Property Value
Hint
A hint shown in UI contexts to assist with filling in this parameter.
public string Hint { get; set; }
Property Value
Name
The parameter name.
public string Name { get; set; }
Property Value
Required
Indicates whether this parameter is required.
public bool Required { get; set; }
Property Value
Type
The data type of the parameter.
public string Type { get; set; }
Property Value
Validation
Validation constraints for this parameter.
public Dictionary<string, List<int>> Validation { get; set; }
Property Value
- Dictionary<string, List<int>>