-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.dart
88 lines (81 loc) · 2.27 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import 'package:flutter/material.dart';
import 'package:vapi/Vapi.dart';
const VAPI_PUBLIC_KEY = 'VAPI_PUBLIC_KEY';
const VAPI_ASSISTANT_ID = 'VAPI_ASSISTANT_ID';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String buttonText = 'Start Call';
bool isLoading = false;
bool isCallStarted = false;
Vapi vapi = Vapi(VAPI_PUBLIC_KEY);
_MyAppState() {
vapi.onEvent.listen((event) {
if (event.label == "call-start") {
setState(() {
buttonText = 'End Call';
isLoading = false;
isCallStarted = true;
});
print('call started');
}
if (event.label == "call-end") {
setState(() {
buttonText = 'Start Call';
isLoading = false;
isCallStarted = false;
});
print('call ended');
}
if (event.label == "message") {
print(event.value);
}
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Test App'),
),
body: Center(
child: ElevatedButton(
onPressed: isLoading
? null
: () async {
setState(() {
buttonText = 'Loading...';
isLoading = true;
});
if (!isCallStarted) {
await vapi.start(assistant: {
"firstMessage": "Hello, I am an assistant.",
"model": {
"provider": "openai",
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "system",
"content": "You are an assistant."
}
]
},
"voice": "jennifer-playht"
});
} else {
await vapi.stop();
}
},
child: Text(buttonText),
),
),
),
);
}
}