Class VerificationAttempt
- Namespace
- Glitch9.AIDevKit.ElevenLabs
Represents a single attempt to verify a voice.
public class VerificationAttempt
- Inheritance
-
objectVerificationAttempt
Properties
Accepted
Whether this verification attempt was accepted.
public bool Accepted { get; set; }
Property Value
- bool
DateUnix
The time the attempt was made, in Unix time.
public long DateUnix { get; set; }
Property Value
- long
LevenshteinDistance
The Levenshtein distance between expected and actual text (lower is better).
public double LevenshteinDistance { get; set; }
Property Value
- double
Recording
The recording used in this verification attempt.
public Recording Recording { get; set; }
Property Value
Similarity
The similarity score between the original and the attempt (higher is better).
public double Similarity { get; set; }
Property Value
- double
Text
The text used during the verification attempt.
public string Text { get; set; }
Property Value
- string