fuzbiz 0.0.4
fuzbiz: ^0.0.4 copied to clipboard
A Flutter package for building a smart chat app where users can log in and ask questions about services the model is trained to understand.
Fuzbiz #
Fuzbiz is a Flutter package for building smart, AI-powered chat interfaces—similar to ChatGPT. It allows users to log in and chat with a model trained to answer questions about specific services.
✨ Features #
- 🔐 User login and authentication
- 💬 Interactive chat interface
- 🧠 Trained model for domain-specific Q&A
- 🌐 WebView support via
webview_flutter - 📱 Clean, responsive Flutter UI
📦 Installation #
Add the following to your pubspec.yaml:
dependencies:
fuzbiz: ^0.0.4
Then run:
flutter pub get
🚀 Usage #
Here’s a basic usage example:
import 'package:flutter/material.dart';
import 'package:fuzbiz/fuzbiz.dart';
class FuzBizView extends StatelessWidget {
const FuzBizView({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("FuzBiz Chat"),
),
body: SafeArea(
child: const FuzBizChat(url: "***************"),
),
);
}
}
💡 Make sure to replace the URL with your actual backend or AI model endpoint.
📂 Example App #
To try out the package with a live example:
cd example
flutter run
📄 License #
This project is licensed under the MIT License – see the LICENSE file for details.
Built with ❤️ using Flutter