-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmain.dart
More file actions
636 lines (583 loc) · 21.3 KB
/
main.dart
File metadata and controls
636 lines (583 loc) · 21.3 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:path_provider/path_provider.dart';
import 'package:record/record.dart';
import 'package:http/http.dart' as http;
import 'package:permission_handler/permission_handler.dart';
import 'dart:developer' as developer;
import 'package:flutter_dotenv/flutter_dotenv.dart';
import 'services/chatbot_service.dart';
import 'screens/transcription_detail_screen.dart';
import 'screens/summary_screen.dart';
import 'screens/prescription_screen.dart';
Future<void> main() async {
try {
await dotenv.load(fileName: '.env');
} catch (_) {
await dotenv.load(fileName: '.env.example');
}
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'DocPilot',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
fontFamily: 'Roboto',
),
home: const TranscriptionScreen(),
debugShowCheckedModeBanner: false,
);
}
}
class TranscriptionScreen extends StatefulWidget {
const TranscriptionScreen({super.key});
@override
State<TranscriptionScreen> createState() => _TranscriptionScreenState();
}
class _TranscriptionScreenState extends State<TranscriptionScreen> with SingleTickerProviderStateMixin {
final _audioRecorder = AudioRecorder();
bool _isRecording = false;
String _transcription = '';
String _recordingPath = '';
bool _isTranscribing = false;
bool _isProcessing = false;
// Data for screens
String _formattedTranscription = '';
String _summaryContent = '';
String _prescriptionContent = '';
// Chatbot service
final ChatbotService _chatbotService = ChatbotService();
// For waveform animation
late AnimationController _animationController;
final List<double> _waveformValues = List.filled(40, 0.0);
Timer? _waveformTimer;
bool _isValidApiKey(String value, String provider) {
final trimmed = value.trim();
if (trimmed.isEmpty) {
return false;
}
final normalized = trimmed.toLowerCase();
if (provider == 'deepgram') {
return !normalized.contains('your_deepgram_api_key_here') &&
!normalized.contains('replace_with') &&
!normalized.contains('example') &&
!normalized.contains('dummy');
}
return !normalized.contains('replace_with') &&
!normalized.contains('example') &&
!normalized.contains('dummy');
}
@override
void initState() {
super.initState();
_requestPermissions();
// Initialize animation controller for waveform animation
_animationController = AnimationController(
vsync: this,
duration: const Duration(milliseconds: 1000),
)..repeat();
}
Future<void> _requestPermissions() async {
final status = await Permission.microphone.request();
if (status != PermissionStatus.granted) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Microphone permission is required'),
backgroundColor: Colors.red,
),
);
}
}
}
Future<void> _toggleRecording() async {
if (_isRecording) {
await _stopRecording();
} else {
await _startRecording();
}
}
void _startWaveformAnimation() {
// Create a timer that updates the waveform values periodically
_waveformTimer = Timer.periodic(const Duration(milliseconds: 100), (timer) {
if (mounted) {
setState(() {
// Update waveform values with random heights to simulate audio levels
for (int i = 0; i < _waveformValues.length; i++) {
// When recording, show dynamic waveform
_waveformValues[i] = _isRecording ? Random().nextDouble() : 0.0;
}
});
}
});
}
Future<void> _startRecording() async {
try {
if (await _audioRecorder.hasPermission()) {
final directory = await getTemporaryDirectory();
_recordingPath = '${directory.path}/recording_${DateTime.now().millisecondsSinceEpoch}.m4a';
await _audioRecorder.start(
RecordConfig(
encoder: AudioEncoder.aacLc,
bitRate: 128000,
sampleRate: 44100,
),
path: _recordingPath,
);
setState(() {
_isRecording = true;
_transcription = 'Recording...';
// Reset previous content
_formattedTranscription = '';
_summaryContent = '';
_prescriptionContent = '';
});
// Start waveform animation
_startWaveformAnimation();
developer.log('Started recording to: $_recordingPath');
} else {
await _requestPermissions();
}
} catch (e) {
setState(() {
_transcription = 'Error starting recording: $e';
});
developer.log('Error starting recording: $e', error: e);
}
}
Future<void> _stopRecording() async {
try {
// Stop waveform animation
_waveformTimer?.cancel();
await _audioRecorder.stop();
setState(() {
_isRecording = false;
_isTranscribing = true;
_transcription = 'Processing audio...';
// Reset waveform heights
for (int i = 0; i < _waveformValues.length; i++) {
_waveformValues[i] = 0.0;
}
});
developer.log('Recording stopped, transcribing audio...');
await _transcribeAudio();
} catch (e) {
setState(() {
_isRecording = false;
_transcription = 'Error stopping recording: $e';
});
developer.log('Error stopping recording: $e', error: e);
}
}
Future<void> _transcribeAudio() async {
try {
final apiKey = dotenv.env['DEEPGRAM_API_KEY'] ?? '';
if (!_isValidApiKey(apiKey, 'deepgram')) {
setState(() {
_isTranscribing = false;
_isProcessing = false;
_transcription = 'DEEPGRAM_API_KEY is missing or still a placeholder. Add a real key to .env';
});
return;
}
final uri = Uri.parse('https://api.deepgram.com/v1/listen?model=nova-2');
final file = File(_recordingPath);
if (!await file.exists()) {
setState(() {
_isTranscribing = false;
_transcription = 'Recording file not found';
});
return;
}
final bytes = await file.readAsBytes();
final response = await http.post(
uri,
headers: {
'Authorization': 'Token $apiKey',
'Content-Type': 'audio/m4a',
},
body: bytes,
);
if (response.statusCode == 200) {
final decodedResponse = json.decode(response.body);
final result = decodedResponse['results']['channels'][0]['alternatives'][0]['transcript'];
setState(() {
_isTranscribing = false;
_transcription = result.isNotEmpty ? result : 'No speech detected';
_formattedTranscription = _transcription; // Store raw transcription directly
_isProcessing = true;
});
// Print the transcription to console
print('\n============ TRANSCRIPTION RESULT ============');
print(_transcription);
print('=============================================');
if (!_chatbotService.hasValidApiKey) {
setState(() {
_isProcessing = false;
_summaryContent = 'Error: GEMINI_API_KEY is missing. Add it to your .env file.';
_prescriptionContent = 'Error: GEMINI_API_KEY is missing. Add it to your .env file.';
});
return;
}
// Send to Gemini for processing if we have a valid transcription
if (_transcription.isNotEmpty && _transcription != 'No speech detected') {
await _processWithGemini(_transcription);
} else {
setState(() {
_isProcessing = false;
});
}
} else {
String message = 'Transcription failed (status ${response.statusCode})';
try {
final decodedError = json.decode(response.body);
final errorText = decodedError['error'] ?? decodedError['message'];
if (errorText is String && errorText.trim().isNotEmpty) {
message = 'Transcription failed: $errorText';
}
} catch (_) {}
setState(() {
_isTranscribing = false;
_transcription = message;
_isProcessing = false;
});
}
} catch (e) {
setState(() {
_isTranscribing = false;
_transcription = 'Error during transcription';
_isProcessing = false;
});
print('Error: $e');
}
}
// Process the transcription with Gemini
Future<void> _processWithGemini(String transcription) async {
try {
// Process with the three specific prompts
// Prompt 1: Format as conversation
// final formattedTranscription = await _chatbotService.getGeminiResponse(
// "Provide a proper conversation between a doctor and a patient in the format: Doctor: [said this] Patient: [said that] based on this transcription and make sure no additional things should be added on point conversation just detect this messages spoken by Dr and this message is spoken by patient: $transcription"
// );
// Prompt 2: Generate summary
final summary = await _chatbotService.getGeminiResponse(
"Generate a summary of the conversation based on this transcription: $transcription"
);
// Prompt 3: Generate prescription
final prescription = await _chatbotService.getGeminiResponse(
"Generate a prescription based on the conversation in this transcription: $transcription"
);
setState(() {
// _formattedTranscription = formattedTranscription;
_summaryContent = summary;
_prescriptionContent = prescription;
_isProcessing = false;
});
print('\n============ GEMINI PROCESSING COMPLETE ============');
} catch (e) {
setState(() {
_isProcessing = false;
});
print('Error processing with Gemini: $e');
}
}
@override
void dispose() {
_waveformTimer?.cancel();
_animationController.dispose();
_audioRecorder.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
final deepgramKey = dotenv.env['DEEPGRAM_API_KEY'] ?? '';
final hasDeepgramKey = _isValidApiKey(deepgramKey, 'deepgram');
final hasGeminiKey = _chatbotService.hasValidApiKey;
final setupComplete = hasDeepgramKey && hasGeminiKey;
return Scaffold(
body: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Colors.deepPurple.shade800,
Colors.deepPurple.shade500,
],
),
),
child: SafeArea(
child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 24.0, vertical: 16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// App header
const Text(
'DocPilot',
style: TextStyle(
fontSize: 28,
fontWeight: FontWeight.bold,
color: Colors.white,
),
),
const SizedBox(height: 8),
Text(
_isRecording
? 'Recording your voice...'
: _isTranscribing
? 'Transcribing your voice...'
: _isProcessing
? 'Processing with Gemini...'
: setupComplete
? 'Tap the mic to begin'
: 'Complete API setup to enable recording and AI output',
style: const TextStyle(
fontSize: 16,
color: Colors.white70,
),
),
if (!setupComplete) ...[
const SizedBox(height: 16),
Container(
width: double.infinity,
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: Colors.white.withOpacity(0.14),
borderRadius: BorderRadius.circular(10),
),
child: Text(
'Missing valid API keys:\n'
'- DEEPGRAM_API_KEY (${hasDeepgramKey ? 'OK' : 'Missing/placeholder'})\n'
'- GEMINI_API_KEY (${hasGeminiKey ? 'OK' : 'Missing/placeholder'})\n\n'
'Create .env in the project root with real keys.',
style: const TextStyle(
fontSize: 13,
color: Colors.white,
height: 1.3,
),
),
),
],
const SizedBox(height: 30),
// Waveform visualization
Container(
height: 100,
padding: const EdgeInsets.symmetric(vertical: 10),
child: AnimatedBuilder(
animation: _animationController,
builder: (context, child) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.end,
children: List.generate(
_waveformValues.length,
(index) {
final value = _waveformValues[index];
return AnimatedContainer(
duration: const Duration(milliseconds: 100),
width: 4,
height: value * 80 + 5, // Minimum height of 5
decoration: BoxDecoration(
color: _isRecording
? HSLColor.fromAHSL(
1.0,
(280 + index * 2) % 360,
0.8,
0.7 + value * 0.2
).toColor()
: Colors.white.withOpacity(0.5),
borderRadius: BorderRadius.circular(5),
),
);
},
),
);
},
),
),
const SizedBox(height: 40),
// Microphone button
Center(
child: GestureDetector(
onTap: (_isTranscribing || _isProcessing)
? null
: () {
if (!hasDeepgramKey) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Add a valid DEEPGRAM_API_KEY in .env first.'),
backgroundColor: Colors.red,
),
);
return;
}
_toggleRecording();
},
child: Container(
width: 100,
height: 100,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: _isRecording ? Colors.red : Colors.white,
boxShadow: [
BoxShadow(
color: (_isRecording ? Colors.red : Colors.white).withOpacity(0.3),
spreadRadius: 8,
blurRadius: 20,
),
],
),
child: AnimatedContainer(
duration: const Duration(milliseconds: 200),
child: Icon(
_isRecording ? Icons.stop : Icons.mic,
size: 50,
color: _isRecording ? Colors.white : Colors.deepPurple.shade800,
),
),
),
),
),
const SizedBox(height: 20),
// Status indicator
Center(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
if (_isRecording || _isTranscribing || _isProcessing)
Container(
width: 16,
height: 16,
margin: const EdgeInsets.only(right: 8.0),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: _isRecording
? Colors.red
: _isProcessing
? Colors.blue
: Colors.amber,
),
),
Text(
_isRecording
? 'Recording in progress'
: _isTranscribing
? 'Processing audio...'
: _isProcessing
? 'Generating content with Gemini...'
: _transcription.isEmpty
? 'Press the microphone button to start'
: 'Ready to view results',
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
color: Colors.white,
),
),
],
),
),
const SizedBox(height: 40),
// Vertical navigation buttons
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
_buildNavigationButton(
context,
'Transcription',
Icons.record_voice_over,
_formattedTranscription.isNotEmpty,
() => Navigator.push(
context,
MaterialPageRoute(
builder: (context) => TranscriptionDetailScreen(transcription: _formattedTranscription),
),
),
),
const SizedBox(height: 16),
_buildNavigationButton(
context,
'Summary',
Icons.summarize,
_summaryContent.isNotEmpty,
() => Navigator.push(
context,
MaterialPageRoute(
builder: (context) => SummaryScreen(summary: _summaryContent),
),
),
),
const SizedBox(height: 16),
_buildNavigationButton(
context,
'Prescription',
Icons.medication,
_prescriptionContent.isNotEmpty,
() => Navigator.push(
context,
MaterialPageRoute(
builder: (context) => PrescriptionScreen(prescription: _prescriptionContent),
),
),
),
],
),
],
),
),
),
),
),
);
}
// Helper method to build navigation buttons
Widget _buildNavigationButton(
BuildContext context,
String title,
IconData icon,
bool isEnabled,
VoidCallback onPressed,
) {
return SizedBox(
width: double.infinity,
child: ElevatedButton(
onPressed: isEnabled ? onPressed : null,
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.symmetric(vertical: 16),
backgroundColor: Colors.white,
foregroundColor: Colors.deepPurple,
disabledBackgroundColor: Colors.white.withOpacity(0.3),
disabledForegroundColor: Colors.white.withOpacity(0.5),
elevation: isEnabled ? 4 : 0,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(icon, size: 24),
const SizedBox(width: 12),
Text(
title,
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
],
),
),
);
}
}