conva_ai_core 0.0.3 conva_ai_core: ^0.0.3 copied to clipboard
This is the flutter plugin for using ConvaAI Co-pilots
import 'package:conva_ai_core/models/conva_ai_capability_completion.dart';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:conva_ai_core/conva_ai_core.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _initStatus = 'Initialization Unknown';
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String success = "unknown";
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_initStatus = success;
});
ConvaAI.instance.initCopilot(
id: "<AssistantID>", key: "<APIKey>", version: "<Version>");
try {
ConvaAICapabilityModel completion =
await ConvaAI.instance.invokeCapability(input: "Hello World");
setState(() {
_initStatus = completion.toString();
});
} catch (error) {
setState(() {
_initStatus = 'Error: ${error.toString()}';
});
}
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Text('$_initStatus\n'),
),
),
);
}
}