You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 1, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: src/AssemblyAI/AssemblyAI.csproj
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,10 @@
9
9
<RootNamespace>AssemblyAI</RootNamespace>
10
10
<AssemblyName>AssemblyAI</AssemblyName>
11
11
<PackageId>AssemblyAI</PackageId>
12
-
<Version>1.0.1</Version>
13
-
<AssemblyVersion>1.0.1.0</AssemblyVersion>
14
-
<FileVersion>1.0.1.0</FileVersion>
15
-
<PackageVersion>1.0.1</PackageVersion>
12
+
<Version>1.1.0</Version>
13
+
<AssemblyVersion>1.1.0.0</AssemblyVersion>
14
+
<FileVersion>1.1.0.0</FileVersion>
15
+
<PackageVersion>1.1.0</PackageVersion>
16
16
<Title>AssemblyAI C# .NET SDK</Title>
17
17
<Authors>AssemblyAI</Authors>
18
18
<Description>The AssemblyAI C# .NET SDK provides an easy-to-use interface for interacting with the AssemblyAI API, which supports async and real-time transcription, audio intelligence models, as well as the latest LeMUR models.</Description>
/// Enable [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection), either true or false.
20
+
/// </summary>
21
+
[JsonPropertyName("language_detection")]
22
+
publicbool?LanguageDetection{get;set;}
23
+
24
+
/// <summary>
25
+
/// The confidence threshold for the automatically detected language.
26
+
/// An error will be returned if the language confidence is below this threshold.
/// Enable Automatic Punctuation, can be true or false
20
37
/// </summary>
@@ -27,15 +44,18 @@ public record TranscriptParams
27
44
[JsonPropertyName("format_text")]
28
45
publicbool?FormatText{get;set;}
29
46
47
+
/// <summary>
48
+
/// Transcribe Filler Words, like "umm", in your media file; can be true or false
49
+
/// </summary>
50
+
[JsonPropertyName("disfluencies")]
51
+
publicbool?Disfluencies{get;set;}
52
+
30
53
/// <summary>
31
54
/// Enable [Dual Channel](https://www.assemblyai.com/docs/models/speech-recognition#dual-channel-transcription) transcription, can be true or false.
32
55
/// </summary>
33
56
[JsonPropertyName("dual_channel")]
34
57
publicbool?DualChannel{get;set;}
35
58
36
-
[JsonPropertyName("speech_model")]
37
-
publicSpeechModel?SpeechModel{get;set;}
38
-
39
59
/// <summary>
40
60
/// The URL to which we send webhook requests. We sends two different types of webhook requests. One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
41
61
/// </summary>
@@ -79,7 +99,7 @@ public record TranscriptParams
79
99
publicIEnumerable<string>?WordBoost{get;set;}
80
100
81
101
/// <summary>
82
-
/// The word boost parameter value
102
+
/// How much to boost specified words
83
103
/// </summary>
84
104
[JsonPropertyName("boost_param")]
85
105
publicTranscriptBoostParam?BoostParam{get;set;}
@@ -147,24 +167,12 @@ public record TranscriptParams
147
167
[JsonPropertyName("iab_categories")]
148
168
publicbool?IabCategories{get;set;}
149
169
150
-
/// <summary>
151
-
/// Enable [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection), either true or false.
152
-
/// </summary>
153
-
[JsonPropertyName("language_detection")]
154
-
publicbool?LanguageDetection{get;set;}
155
-
156
170
/// <summary>
157
171
/// Customize how words are spelled and formatted using to and from values
/// Whether [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection) is enabled, either true or false
43
37
/// </summary>
44
-
[JsonPropertyName("audio_url")]
45
-
publicrequiredstringAudioUrl{get;set;}
38
+
[JsonPropertyName("language_detection")]
39
+
publicbool?LanguageDetection{get;set;}
40
+
41
+
/// <summary>
42
+
/// The confidence threshold for the automatically detected language.
43
+
/// An error will be returned if the language confidence is below this threshold.
/// The confidence score for the detected language, between 0.0 (low confidence) and 1.0 (high confidence)
51
+
/// </summary>
52
+
[JsonPropertyName("language_confidence")]
53
+
publicdouble?LanguageConfidence{get;set;}
54
+
55
+
[JsonPropertyName("speech_model")]
56
+
publicSpeechModel?SpeechModel{get;set;}
46
57
47
58
/// <summary>
48
59
/// The textual transcript of your media file
@@ -88,15 +99,18 @@ public record Transcript
88
99
[JsonPropertyName("format_text")]
89
100
publicbool?FormatText{get;set;}
90
101
102
+
/// <summary>
103
+
/// Transcribe Filler Words, like "umm", in your media file; can be true or false
104
+
/// </summary>
105
+
[JsonPropertyName("disfluencies")]
106
+
publicbool?Disfluencies{get;set;}
107
+
91
108
/// <summary>
92
109
/// Whether [Dual channel transcription](https://www.assemblyai.com/docs/models/speech-recognition#dual-channel-transcription) was enabled in the transcription request, either true or false
93
110
/// </summary>
94
111
[JsonPropertyName("dual_channel")]
95
112
publicbool?DualChannel{get;set;}
96
113
97
-
[JsonPropertyName("speech_model")]
98
-
publicSpeechModel?SpeechModel{get;set;}
99
-
100
114
/// <summary>
101
115
/// The URL to which we send webhook requests.
102
116
/// We sends two different types of webhook requests.
/// Whether [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection) is enabled, either true or false
232
-
/// </summary>
233
-
[JsonPropertyName("language_detection")]
234
-
publicbool?LanguageDetection{get;set;}
235
-
236
244
/// <summary>
237
245
/// Customize how words are spelled and formatted using to and from values
238
246
/// </summary>
@@ -288,12 +296,6 @@ public record Transcript
288
296
[JsonPropertyName("topics")]
289
297
publicIEnumerable<string>?Topics{get;set;}
290
298
291
-
/// <summary>
292
-
/// Transcribe Filler Words, like "umm", in your media file; can be true or false
293
-
/// </summary>
294
-
[JsonPropertyName("disfluencies")]
295
-
publicbool?Disfluencies{get;set;}
296
-
297
299
/// <summary>
298
300
/// Whether [Sentiment Analysis](https://www.assemblyai.com/docs/models/sentiment-analysis) is enabled, can be true or false
299
301
/// </summary>
@@ -338,4 +340,16 @@ public record Transcript
338
340
/// </summary>
339
341
[JsonPropertyName("error")]
340
342
publicstring?Error{get;set;}
343
+
344
+
/// <summary>
345
+
/// The language model that was used for the transcript
346
+
/// </summary>
347
+
[JsonPropertyName("language_model")]
348
+
publicrequiredstringLanguageModel{get;set;}
349
+
350
+
/// <summary>
351
+
/// The acoustic model that was used for the transcript
/// Enable [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection), either true or false.
14
+
/// </summary>
15
+
[JsonPropertyName("language_detection")]
16
+
publicbool?LanguageDetection{get;set;}
17
+
18
+
/// <summary>
19
+
/// The confidence threshold for the automatically detected language.
20
+
/// An error will be returned if the language confidence is below this threshold.
/// Enable Automatic Punctuation, can be true or false
14
31
/// </summary>
@@ -21,15 +38,18 @@ public record TranscriptOptionalParams
21
38
[JsonPropertyName("format_text")]
22
39
publicbool?FormatText{get;set;}
23
40
41
+
/// <summary>
42
+
/// Transcribe Filler Words, like "umm", in your media file; can be true or false
43
+
/// </summary>
44
+
[JsonPropertyName("disfluencies")]
45
+
publicbool?Disfluencies{get;set;}
46
+
24
47
/// <summary>
25
48
/// Enable [Dual Channel](https://www.assemblyai.com/docs/models/speech-recognition#dual-channel-transcription) transcription, can be true or false.
26
49
/// </summary>
27
50
[JsonPropertyName("dual_channel")]
28
51
publicbool?DualChannel{get;set;}
29
52
30
-
[JsonPropertyName("speech_model")]
31
-
publicSpeechModel?SpeechModel{get;set;}
32
-
33
53
/// <summary>
34
54
/// The URL to which we send webhook requests. We sends two different types of webhook requests. One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
35
55
/// </summary>
@@ -73,7 +93,7 @@ public record TranscriptOptionalParams
73
93
publicIEnumerable<string>?WordBoost{get;set;}
74
94
75
95
/// <summary>
76
-
/// The word boost parameter value
96
+
/// How much to boost specified words
77
97
/// </summary>
78
98
[JsonPropertyName("boost_param")]
79
99
publicTranscriptBoostParam?BoostParam{get;set;}
@@ -141,24 +161,12 @@ public record TranscriptOptionalParams
141
161
[JsonPropertyName("iab_categories")]
142
162
publicbool?IabCategories{get;set;}
143
163
144
-
/// <summary>
145
-
/// Enable [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection), either true or false.
146
-
/// </summary>
147
-
[JsonPropertyName("language_detection")]
148
-
publicbool?LanguageDetection{get;set;}
149
-
150
164
/// <summary>
151
165
/// Customize how words are spelled and formatted using to and from values
0 commit comments