Table of Contents

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

IEnumerable<TopicDetectionResult>

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

AudioIntelligenceModelStatus

Summary

The overall relevance of topic to the entire audio file

[JsonPropertyName("summary")]
public Dictionary<string, double> Summary { get; set; }

Property Value

Dictionary<string, double>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.