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