generated from deepgram/oss-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aff6110
commit 51f595d
Showing
20 changed files
with
2,653 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved. | ||
# Use of this source code is governed by a MIT license that can be found in the LICENSE file. | ||
# SPDX-License-Identifier: MIT | ||
|
||
from .enums import AgentWebSocketEvents | ||
|
||
# websocket | ||
from .client import ( | ||
AgentWebSocketClient, | ||
AsyncAgentWebSocketClient, | ||
) | ||
|
||
from .client import ( | ||
#### common websocket response | ||
OpenResponse, | ||
CloseResponse, | ||
ErrorResponse, | ||
UnhandledResponse, | ||
#### unique | ||
WelcomeResponse, | ||
SettingsAppliedResponse, | ||
ConversationTextResponse, | ||
UserStartedSpeakingResponse, | ||
AgentThinkingResponse, | ||
FunctionCallingResponse, | ||
AgentStartedSpeakingResponse, | ||
AgentAudioDoneResponse, | ||
EndOfThoughtResponse, | ||
) | ||
|
||
from .client import ( | ||
# top level | ||
SettingsConfigurationOptions, | ||
UpdateInstructionsOptions, | ||
UpdateSpeakOptions, | ||
InjectAgentMessageOptions, | ||
# sub level | ||
Listen, | ||
Speak, | ||
Header, | ||
Item, | ||
Properties, | ||
Parameters, | ||
Function, | ||
Provider, | ||
Think, | ||
Agent, | ||
Input, | ||
Output, | ||
Audio, | ||
Context, | ||
) |
Oops, something went wrong.