Class FunctionPropertyAttribute
- Namespace
- OpenAI
- Assembly
- OpenAI-DotNet.dll
[AttributeUsage(AttributeTargets.Property|AttributeTargets.Field)]
public sealed class FunctionPropertyAttribute : Attribute
- Inheritance
-
FunctionPropertyAttribute
- Inherited Members
Constructors
FunctionPropertyAttribute(string, bool, object, params object[])
Property Attribute to help with function calling.
public FunctionPropertyAttribute(string description = null, bool required = false, object defaultValue = null, params object[] possibleValues)
Parameters
description
stringThe description of the property
required
boolIs the property required?
defaultValue
objectThe default value.
possibleValues
object[]Enums or other possible values.
Properties
DefaultValue
The default value.
public object DefaultValue { get; }
Property Value
Description
The description of the property
public string Description { get; }
Property Value
PossibleValues
Enums or other possible values.
public object[] PossibleValues { get; }
Property Value
- object[]
Required
Is the property required?
public bool Required { get; }