google_multimodal_assistant_real_time_with_daily 1.0.0
google_multimodal_assistant_real_time_with_daily: ^1.0.0 copied to clipboard
A Flutter plugin for integrating Pipecat's iOS SDK with real-time audio and video communication.
d# Google Multimodal Assistant Real-Time with Daily
A Flutter plugin for integrating Pipecat's iOS SDK with real-time audio and video communication.
Features #
- Real-time audio streaming
- Bot communication and state management
- Media device handling
- Configuration management
- Event handling
Installation #
Add the following to your pubspec.yaml
:
dependencies:
google_multimodal_assistant_real_time_with_daily: ^1.0.0
Run flutter pub get
to install the package.
iOS Setup #
Add the following to your iOS Podfile
:
pod 'PipecatClientIOS', '~> 0.3.0'
pod 'PipecatClientIOSDaily', '~> 0.3.0'
Run pod install
in the ios
directory.
Usage #
import 'package:google_multimodal_assistant_real_time_with_daily/pipecat_flutter.dart';
void main() {
final client = PipecatClient();
client.initialize(
baseUrl: 'https://your-api-url.com',
enableMic: true,
enableCamera: true,
config: {},
);
client.startSession();
}
License #
MIT License. See LICENSE for details.