Show / Hide Table of Contents

Class FunctionDefinition

A function the model may call.

Inheritance
object
ToolDefinition
FunctionDefinition
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class FunctionDefinition : ToolDefinition

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

A description of what the function does, used by the model to choose when and how to call the function.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.

Parameters

Declaration
[JsonProperty(PropertyName = "parameters")]
public object Parameters { get; set; }
Property Value
Type Description
object

The parameters the functions accepts, described as a JSON Schema object. Omitting parameters defines a function with an empty parameter list.

In this article
Back to top