Agora's low latency, high performance Realtime API to work with Voice Conversational AI
Project description
API Reference for agora-realtime-ai-api
Python Package
RtcOptions
Class
The RtcOptions
class represents the configuration options for an RTC (Real-Time Communication) session.
Constructor:
RtcOptions(
*,
channel_name: str = None,
uid: int = 0,
sample_rate: int = 24000,
channels: int = 1,
enable_pcm_dump: bool = False
)
- channel_name: Name of the channel.
- uid: Unique identifier for the user.
- sample_rate: Sample rate for audio (default is 24,000 Hz).
- channels: Number of audio channels (default is 1).
- enable_pcm_dump: Flag to enable PCM audio dump (default is
False
).
AudioStream
Class
The AudioStream
class represents an iterable stream of PCM audio frames.
Constructor:
AudioStream()
Methods:
__aiter__() -> AsyncIterator[PcmAudioFrame]
: Async iterator to traverse through audio frames.__anext__() -> PcmAudioFrame
: Returns the next audio frame in the queue.
Channel
Class
The Channel
class handles the RTC channel and associated operations such as connection, audio subscriptions, and data stream messages.
Constructor:
Channel(rtc: "RtcEngine", options: RtcOptions)
Methods:
connect() -> None
: Connects to the channel asynchronously.disconnect() -> None
: Disconnects from the channel asynchronously.get_audio_frames(uid: int) -> AudioStream
: Returns the audio stream for a specific user.push_audio_frame(frame: bytes) -> None
: Sends a PCM audio frame to the channel.clear_sender_audio_buffer() -> None
: Clears the audio buffer used for sending.subscribe_audio(uid: int) -> None
: Subscribes to a user's audio stream.unsubscribe_audio(uid: int) -> None
: Unsubscribes from a user's audio stream.send_stream_message(data: str, msg_id: str) -> None
: Sends a data stream message to the channel.
ChatMessage
Class
Represents a chat message to be sent over the RTC channel.
Constructor:
ChatMessage(message: str, msg_id: str)
Chat
Class
Handles the queue of chat messages and sends them over the RTC channel.
Constructor:
Chat(channel: Channel)
Methods:
send_message(item: ChatMessage) -> None
: Sends a chat message.
RtcEngine
Class
The RtcEngine
class initializes the Agora service and provides methods for managing RTC channels.
Constructor:
RtcEngine(appid: str, appcert: str)
Methods:
create_channel(options: RtcOptions) -> Channel
: Creates an RTC channel with the given options.destroy() -> None
: Destroys the RTC engine instance.
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
Built Distribution
File details
Details for the file agora_realtime_ai_api-1.0.8.tar.gz
.
File metadata
- Download URL: agora_realtime_ai_api-1.0.8.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f00ebbc9386ea4600df2dc078f2ca0663a3b2b6a9b6ae9620b36623c7a44b0b |
|
MD5 | 40ccf4e2804bc728d8e5fa477b442d11 |
|
BLAKE2b-256 | 3e6d05014a0ea24ce44f1846454eeba89cc7dbbb859134457f3dc1b2c4698683 |
File details
Details for the file agora_realtime_ai_api-1.0.8-py3-none-any.whl
.
File metadata
- Download URL: agora_realtime_ai_api-1.0.8-py3-none-any.whl
- Upload date:
- Size: 15.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e8f989202fc79deba0f64540acce1449ac260355f2512badfd1761d75a27b1b |
|
MD5 | ff9c63b36ae5767eedb9b069c658b31a |
|
BLAKE2b-256 | 875ba1339c753a23e3bd771425a59c3cb2a88fd489bd25340c85c453f3c7cb78 |