aisha 0.0.1
aisha: ^0.0.1 copied to clipboard
This Flutter package allows you to create a seamless voice call experience with an AI agent, similar to the ChatGPT app. It uses LangChain for answering questions based on the data you provide.
// Featurs of this package:
// 1. Providing calling feature widgets like chatgpt 1-1 call feature
// 2.
import 'package:flutter/material.dart';
import 'package:aisha/aisha.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Speech Widgets Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const VoiceCallPage(),
);
}
}