Class Annotation
- Namespace
- OpenAI
- Assembly
- OpenAI-DotNet.dll
public sealed class Annotation
- Inheritance
-
Annotation
- Inherited Members
Properties
EndIndex
[JsonInclude]
[JsonPropertyName("end_index")]
public int EndIndex { get; }
Property Value
FileCitation
A citation within the message that points to a specific quote from a specific File associated with the assistant or the message. Generated when the assistant uses the 'retrieval' tool to search files.
[JsonInclude]
[JsonPropertyName("file_citation")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public FileCitation FileCitation { get; }
Property Value
FilePath
A URL for the file that's generated when the assistant used the 'code_interpreter' tool to generate a file.
[JsonInclude]
[JsonPropertyName("file_path")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public FilePath FilePath { get; }
Property Value
Index
[JsonInclude]
[JsonPropertyName("index")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public int? Index { get; }
Property Value
- int?
StartIndex
[JsonInclude]
[JsonPropertyName("start_index")]
public int StartIndex { get; }
Property Value
Text
The text in the message content that needs to be replaced.
[JsonInclude]
[JsonPropertyName("text")]
public string Text { get; }
Property Value
Type
[JsonInclude]
[JsonPropertyName("type")]
[JsonConverter(typeof(JsonStringEnumConverter<AnnotationType>))]
public AnnotationType Type { get; }
Property Value
Methods
AppendFrom(Annotation)
public void AppendFrom(Annotation other)
Parameters
other
Annotation