Skip to content

Commit

Permalink
fix: oops
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
naomi-lgbt and coderabbitai[bot] authored Jan 29, 2025
1 parent 4242619 commit 210e3f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Deepgram/Clients/Interfaces/v2/IAgentWebSocketClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,25 +107,25 @@ public Task<bool> Subscribe(EventHandler<AgentStartedSpeakingResponse> eventHand
public Task<bool> Subscribe(EventHandler<ErrorResponse> eventHandler);

/// <summary>
/// Subscribe to an Error event from the Deepgram API
/// Subscribe to a SettingsApplied event from the Deepgram API
/// </summary>
/// <returns>True if successful</returns>
public Task<bool> Subscribe(EventHandler<SettingsAppliedResponse> eventHandler);

/// <summary>
/// Subscribe to an Error event from the Deepgram API
/// Subscribe to an InjectionRefused event from the Deepgram API
/// </summary>
/// <returns>True if successful</returns>
public Task<bool> Subscribe(EventHandler<InjectionRefusedResponse> eventHandler);

/// <summary>
/// Subscribe to an Error event from the Deepgram API
/// <summary>
/// Subscribe to an InstructionsUpdated event from the Deepgram API
/// </summary>
/// <returns>True if successful</returns>
public Task<bool> Subscribe(EventHandler<InstructionsUpdatedResponse> eventHandler);

/// <summary>
/// Subscribe to an Error event from the Deepgram API
/// Subscribe to a SpeakUpdated event from the Deepgram API
/// </summary>
/// <returns>True if successful</returns>
public Task<bool> Subscribe(EventHandler<SpeakUpdatedResponse> eventHandler);
Expand Down

0 comments on commit 210e3f8

Please sign in to comment.