Show / Hide Table of Contents

Class HumanInputConfig

Human Input Configuration for an AgentEndpoint.

Inheritance
object
HumanInputConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentService.Models
Assembly: OCI.DotNetSDK.Generativeaiagent.dll
Syntax
public class HumanInputConfig

Properties

ShouldEnableHumanInput

Declaration
[Required(ErrorMessage = "ShouldEnableHumanInput is required.")]
[JsonProperty(PropertyName = "shouldEnableHumanInput")]
public bool? ShouldEnableHumanInput { get; set; }
Property Value
Type Description
bool?

The Agent will request for human input for disambiguation or additional information gathering if this is enabled.

Remarks

Required

In this article
Back to top