Class Annotation
Tool annotations
public sealed record Annotation : IEquatable<Annotation>
- Inheritance
-
Annotation
- Implements
- Inherited Members
Constructors
Annotation()
Tool annotations
public Annotation()
Properties
Autosubmit
If the declarative tool was declared with the autosubmit attribute.
public bool? Autosubmit { get; init; }
Property Value
- bool?
Consequential
A hint indicating that executing the tool will result in consequential actions, ex: booking a flight, transferring money.
public bool? Consequential { get; init; }
Property Value
- bool?
ReadOnly
A hint indicating that the tool does not modify any state.
public bool? ReadOnly { get; init; }
Property Value
- bool?
UntrustedContent
A hint indicating that the tool output may contain untrusted content, ex: UGC, 3rd party data.
public bool? UntrustedContent { get; init; }
Property Value
- bool?