Show / Hide Table of Contents

Class GenericToolInput

Represents a generic tool input schema that accepts flexible, freeform JSON parameters. This structure is intended for tools that do not require a fixed input schema.

Inheritance
object
ToolInput
GenericToolInput
Inherited Members
ToolInput.ToolId
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentruntimeService.Models
Assembly: OCI.DotNetSDK.Generativeaiagentruntime.dll
Syntax
public class GenericToolInput : ToolInput

Properties

Input

Declaration
[Required(ErrorMessage = "Input is required.")]
[JsonProperty(PropertyName = "input")]
public object Input { get; set; }
Property Value
Type Description
object

A freeform JSON object containing the input parameters to be passed to the tool during execution.

Remarks

Required

In this article
Back to top