The all-in-one voice SDK
Project description
vocode Python SDK
pip install vocode
import asyncio
import signal
import vocode
vocode.api_key = "YOUR_API_KEY"
from vocode.conversation import Conversation
from vocode.helpers import create_microphone_input_and_speaker_output
from vocode.models.transcriber import DeepgramTranscriberConfig
from vocode.models.agent import ChatGPTAgentConfig
from vocode.models.synthesizer import AzureSynthesizerConfig
if __name__ == "__main__":
microphone_input, speaker_output = create_microphone_input_and_speaker_output(
use_default_devices=True
)
conversation = Conversation(
input_device=microphone_input,
output_device=speaker_output,
transcriber_config=DeepgramTranscriberConfig.from_input_device(microphone_input),
agent_config=ChatGPTAgentConfig(
initial_message=BaseMessage(text="Hello!"),
prompt_preamble="The AI is having a pleasant conversation about life."
),
synthesizer_config=AzureSynthesizerConfig.from_output_device(speaker_output)
)
# This allows you to stop the conversation with a KeyboardInterrupt
signal.signal(signal.SIGINT, lambda _0, _1: conversation.deactivate())
asyncio.run(conversation.start())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vocode-0.1.59.tar.gz
(4.6 MB
view details)
Built Distribution
File details
Details for the file vocode-0.1.59.tar.gz
.
File metadata
- Download URL: vocode-0.1.59.tar.gz
- Upload date:
- Size: 4.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.9 Darwin/21.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac56991edd932bd8ccde99dd4da143093fd7e38980a06e8fac10f23a14d9655f |
|
MD5 | 0d319f752763e53c6cd37ec222c7891f |
|
BLAKE2b-256 | b77b9527b202da0ea244ced4cb79c5c6afae21bce4d53a37b327e6d2338d197b |
File details
Details for the file vocode-0.1.59-py3-none-any.whl
.
File metadata
- Download URL: vocode-0.1.59-py3-none-any.whl
- Upload date:
- Size: 4.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.9 Darwin/21.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bd659869b64dd569ee32b284baf3d04187c847c693689d72dcc898b76628c13 |
|
MD5 | e054d3fc69b334ccb2885d0607f360a9 |
|
BLAKE2b-256 | 38943a99d60262e70bfabf3a24d6c8a125eeab412cd6427a679ff734de8d5b8c |