source_byte_bot 0.0.4
source_byte_bot: ^0.0.4 copied to clipboard
An Indo-sakura chatbot package from source byte to train your AI model and seamlessly give you a polished output.
import 'package:example/example_screen.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'SourceByteBot Example',
debugShowCheckedModeBanner: false,
home: ExampleScreen(),
);
}
}