jinn 0.0.5
jinn: ^0.0.5 copied to clipboard
A Flutter package providing LiveKit integration for real-time communication features. Includes UI components for building agent-based communication interfaces.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:jinn/jinn.dart';
void main() {
const String myAppBotId = "68848c97e7275607e22ef609";
const String myAppPromptId = "689dc0ebabc59d49c260f290";
runApp(const VoiceAssistantApp(
botId: myAppBotId,
promptId: myAppPromptId,
));
}