Class TopicDetectionModelResult
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record TopicDetectionModelResult : IEquatable<TopicDetectionModelResult>
- Inheritance
-
TopicDetectionModelResult
- Implements
- Inherited Members
Properties
Results
An array of results for the Topic Detection model
[JsonPropertyName("results")]
public IEnumerable<TopicDetectionResult> Results { get; set; }
Property Value
Status
The status of the Topic Detection model. Either success, or unavailable in the rare case that the model failed.
[JsonPropertyName("status")]
public AudioIntelligenceModelStatus Status { get; set; }
Property Value
Summary
The overall relevance of topic to the entire audio file
[JsonPropertyName("summary")]
public Dictionary<string, double> Summary { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.