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.1.4</Version>
13
-
<AssemblyVersion>1.1.4.0</AssemblyVersion>
14
-
<FileVersion>1.1.4.0</FileVersion>
15
-
<PackageVersion>1.1.4</PackageVersion>
12
+
<Version>1.2.0</Version>
13
+
<AssemblyVersion>1.2.0.0</AssemblyVersion>
14
+
<FileVersion>1.2.0.0</FileVersion>
15
+
<PackageVersion>1.2.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>
Copy file name to clipboardExpand all lines: src/AssemblyAI/Transcripts/Requests/TranscriptParams.cs
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,14 +51,22 @@ public record TranscriptParams
51
51
[JsonPropertyName("disfluencies")]
52
52
publicbool?Disfluencies{get;set;}
53
53
54
+
/// <summary>
55
+
/// Enable [Multichannel](https://www.assemblyai.com/docs/models/speech-recognition#multichannel-transcription) transcription, can be true or false.
56
+
/// </summary>
57
+
[JsonPropertyName("multichannel")]
58
+
publicbool?Multichannel{get;set;}
59
+
54
60
/// <summary>
55
61
/// Enable [Dual Channel](https://www.assemblyai.com/docs/models/speech-recognition#dual-channel-transcription) transcription, can be true or false.
56
62
/// </summary>
57
63
[JsonPropertyName("dual_channel")]
58
64
publicbool?DualChannel{get;set;}
59
65
60
66
/// <summary>
61
-
/// 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.
67
+
/// The URL to which we send webhook requests.
68
+
/// We sends two different types of webhook requests.
69
+
/// One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
0 commit comments