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