Show / Hide Table of Contents

Class GenericToolOutput

Specifies an output format for tools that return freeform or unstructured JSON content.

Inheritance
object
ToolOutput
GenericToolOutput
Inherited Members
ToolOutput.ToolId
ToolOutput.ToolName
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 GenericToolOutput : ToolOutput

Properties

Output

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

Specifies the freeform JSON object containing the tool\u2019s output.

Remarks

Required

In this article
Back to top