Class CohereParameterDefinition
A definition of tool parameter.
Inherited Members
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class CohereParameterDefinitionProperties
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }Property Value
| Type | Description | 
|---|---|
| string | The description of the parameter. | 
IsRequired
Declaration
[JsonProperty(PropertyName = "isRequired")]
public bool? IsRequired { get; set; }Property Value
| Type | Description | 
|---|---|
| bool? | Denotes whether the parameter is always present (required) or not. Defaults to not required. | 
Type
Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
public string Type { get; set; }Property Value
| Type | Description | 
|---|---|
| string | The type of the parameter. Must be a valid Python type. | 
Remarks
Required