Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Jul 21, 2024
1 parent 381ea7c commit e5dfe43
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ElevenLabs-DotNet/ElevenLabsClient.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Licensed under the MIT License. See LICENSE in the project root for license information.

using ElevenLabs.Dubbing;
using ElevenLabs.History;
using ElevenLabs.Models;
using ElevenLabs.SoundGeneration;
Expand Down Expand Up @@ -69,6 +70,7 @@ public ElevenLabsClient(ElevenLabsAuthentication authentication = null, ElevenLa
TextToSpeechEndpoint = new TextToSpeechEndpoint(this);
VoiceGenerationEndpoint = new VoiceGenerationEndpoint(this);
SoundGenerationEndpoint = new SoundGenerationEndpoint(this);
DubbingEndpoint = new DubbingEndpoint(this);
}

~ElevenLabsClient()
Expand Down Expand Up @@ -143,5 +145,7 @@ private void Dispose(bool disposing)
public VoiceGenerationEndpoint VoiceGenerationEndpoint { get; }

public SoundGenerationEndpoint SoundGenerationEndpoint { get; }

public DubbingEndpoint DubbingEndpoint { get; }
}
}

0 comments on commit e5dfe43

Please sign in to comment.