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.
Inherited Members
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