chabeau 0.7.3

A full-screen terminal chat interface that connects to various AI APIs for real-time conversations
Documentation
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
//! Session context and metadata tracking.
//!
//! This module defines [`SessionContext`], which captures runtime state for
//! an active chat session including the selected provider, model, HTTP client,
//! theme, logging configuration, and streaming cancellation tokens.
//!
//! Session metadata allows downstream components to act without re-querying
//! configuration or authentication state during the conversation lifecycle.

use std::collections::{BTreeMap, VecDeque};
use std::time::Instant;

use reqwest::Client;
use rust_mcp_schema::CreateMessageRequest;
use tokio_util::sync::CancellationToken;

use crate::api::{ChatMessage, ChatToolCall};
use crate::auth::AuthManager;
use crate::character::card::CharacterCard;
use crate::character::service::CharacterService;
use crate::core::config::data::Config;
#[cfg(test)]
use crate::core::config::data::{DEFAULT_REFINE_INSTRUCTIONS, DEFAULT_REFINE_PREFIX};
use crate::core::providers::{
    resolve_env_session, resolve_session, ProviderResolutionError, ProviderSession,
    ResolveSessionError,
};
use crate::ui::appearance::{detect_preferred_appearance, Appearance};
use crate::ui::builtin_themes::{find_builtin_theme, theme_spec_from_custom};
use crate::ui::theme::Theme;
use crate::utils::color::quantize_theme_for_current_terminal;
use crate::utils::logging::LoggingState;
use crate::utils::url::construct_api_url;

pub struct SessionContext {
    pub client: Client,
    pub model: String,
    pub api_key: String,
    pub base_url: String,
    pub provider_name: String,
    pub provider_display_name: String,
    pub logging: LoggingState,
    pub stream_cancel_token: Option<CancellationToken>,
    pub current_stream_id: u64,
    pub last_retry_time: Instant,
    pub retrying_message_index: Option<usize>,
    pub is_refining: bool,
    pub original_refining_content: Option<String>,
    pub last_refine_prompt: Option<String>,
    pub refine_instructions: String,
    pub refine_prefix: String,
    pub startup_env_only: bool,
    pub mcp_disabled: bool,
    pub active_character: Option<CharacterCard>,
    pub character_greeting_shown: bool,
    pub has_received_assistant_message: bool,
    pub tool_pipeline: ToolPipelineState,
    pub mcp_init: McpInitState,
    pub active_assistant_message_index: Option<usize>,
    pub mcp_tools_enabled: bool,
    pub mcp_tools_unsupported: bool,
}

#[derive(Default, Clone)]
pub struct ToolPipelineState {
    pub pending_tool_calls: BTreeMap<u32, PendingToolCall>,
    pub pending_tool_queue: VecDeque<ToolCallRequest>,
    pub active_tool_request: Option<ToolCallRequest>,
    pub pending_sampling_queue: VecDeque<McpSamplingRequest>,
    pub active_sampling_request: Option<McpSamplingRequest>,
    pub tool_call_records: Vec<ChatToolCall>,
    pub tool_results: Vec<ChatMessage>,
    pub tool_result_history: Vec<ToolResultRecord>,
    pub tool_payload_history: Vec<ToolPayloadHistoryEntry>,
    pub continuation_messages: Option<StreamContinuation>,
}

#[derive(Clone)]
pub struct StreamContinuation {
    pub api_messages: Vec<ChatMessage>,
    pub api_messages_base: Vec<ChatMessage>,
}

#[derive(Default)]
pub struct McpInitState {
    pub in_progress: bool,
    pub complete: bool,
    pub deferred_message: Option<String>,
}

#[derive(Debug, Clone)]
pub struct PendingToolCall {
    pub id: Option<String>,
    pub name: Option<String>,
    pub arguments: String,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ToolResultStatus {
    Success,
    Error,
    Denied,
    Blocked,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ToolFailureKind {
    ToolError,
    ToolCallFailure,
}

impl ToolFailureKind {
    pub fn label(self) -> &'static str {
        match self {
            ToolFailureKind::ToolError => "tool error",
            ToolFailureKind::ToolCallFailure => "tool call failure",
        }
    }

    pub fn display(self) -> &'static str {
        match self {
            ToolFailureKind::ToolError => "Tool error",
            ToolFailureKind::ToolCallFailure => "Tool call failure",
        }
    }
}

impl ToolResultStatus {
    pub fn label(self) -> &'static str {
        match self {
            ToolResultStatus::Success => "success",
            ToolResultStatus::Error => "failed",
            ToolResultStatus::Denied => "denied",
            ToolResultStatus::Blocked => "blocked",
        }
    }

    pub fn display(self) -> &'static str {
        match self {
            ToolResultStatus::Success => "Success",
            ToolResultStatus::Error => "Failed",
            ToolResultStatus::Denied => "Denied",
            ToolResultStatus::Blocked => "Blocked",
        }
    }
}

#[derive(Debug, Clone)]
pub struct ToolResultRecord {
    pub tool_name: String,
    pub server_name: Option<String>,
    pub server_id: Option<String>,
    pub status: ToolResultStatus,
    pub failure_kind: Option<ToolFailureKind>,
    pub content: String,
    pub summary: String,
    pub tool_call_id: Option<String>,
    pub raw_arguments: Option<String>,
    pub assistant_message_index: Option<usize>,
}

#[derive(Clone)]
pub struct ToolPayloadHistoryEntry {
    pub server_id: Option<String>,
    pub tool_call_id: Option<String>,
    pub assistant_message: ChatMessage,
    pub tool_message: ChatMessage,
    pub assistant_message_index: Option<usize>,
}

#[derive(Debug, Clone)]
pub struct ToolCallRequest {
    pub server_id: String,
    pub tool_name: String,
    pub arguments: Option<serde_json::Map<String, serde_json::Value>>,
    pub raw_arguments: String,
    pub tool_call_id: Option<String>,
}

#[derive(Clone)]
pub struct McpSamplingRequest {
    pub server_id: String,
    pub request: CreateMessageRequest,
    pub messages: Vec<ChatMessage>,
}

#[derive(Debug, Clone)]
pub struct McpPromptRequest {
    pub server_id: String,
    pub prompt_name: String,
    pub arguments: std::collections::HashMap<String, String>,
}

pub struct SessionBootstrap {
    pub session: SessionContext,
    pub theme: Theme,
    pub startup_requires_provider: bool,
    pub startup_errors: Vec<String>,
}

pub struct UninitializedSessionBootstrap {
    pub session: SessionContext,
    pub theme: Theme,
    pub config: Config,
    pub startup_requires_provider: bool,
}

pub(crate) struct PrepareWithAuthInput<'a> {
    pub model: String,
    pub log_file: Option<String>,
    pub provider: Option<String>,
    pub env_only: bool,
    pub config: &'a Config,
    pub pre_resolved_session: Option<ProviderSession>,
    pub character: Option<String>,
    pub character_service: &'a mut CharacterService,
}

impl SessionContext {
    /// Set the active character card
    pub fn set_character(&mut self, card: CharacterCard) {
        // Check if this is the same character that's already active
        let is_same_character = self
            .active_character
            .as_ref()
            .map(|current| current.data.name == card.data.name)
            .unwrap_or(false);

        self.active_character = Some(card);

        // Only reset greeting flag if this is a different character
        if !is_same_character {
            self.character_greeting_shown = false;
        }
    }

    /// Clear the active character card
    pub fn clear_character(&mut self) {
        self.active_character = None;
        self.character_greeting_shown = false;
    }

    /// Get a reference to the active character card
    pub fn get_character(&self) -> Option<&CharacterCard> {
        self.active_character.as_ref()
    }

    /// Check if the character greeting should be shown
    pub fn should_show_greeting(&self) -> bool {
        if let Some(character) = &self.active_character {
            !self.character_greeting_shown && !character.data.first_mes.trim().is_empty()
        } else {
            false
        }
    }

    /// Mark the character greeting as shown
    pub fn mark_greeting_shown(&mut self) {
        self.character_greeting_shown = true;
    }

    #[cfg(test)]
    pub fn for_test(provider_name: &str, model: &str) -> Self {
        Self {
            client: Client::new(),
            model: model.to_string(),
            api_key: "test-api-key".to_string(),
            base_url: "https://example.invalid".to_string(),
            provider_name: provider_name.to_string(),
            provider_display_name: provider_name.to_string(),
            logging: LoggingState::new(None).expect("test logging"),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: None,
            character_greeting_shown: false,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        }
    }
}

impl ToolPipelineState {
    pub fn reset(&mut self) {
        self.pending_tool_calls.clear();
        self.pending_tool_queue.clear();
        self.active_tool_request = None;
        self.pending_sampling_queue.clear();
        self.active_sampling_request = None;
        self.tool_call_records.clear();
        self.tool_results.clear();
        self.continuation_messages = None;
    }

    pub fn advance_tool_queue(&mut self) -> Option<&ToolCallRequest> {
        let request = self.pending_tool_queue.pop_front()?;
        self.active_tool_request = Some(request);
        self.active_tool_request.as_ref()
    }

    pub fn advance_sampling_queue(&mut self) -> Option<&McpSamplingRequest> {
        let request = self.pending_sampling_queue.pop_front()?;
        self.active_sampling_request = Some(request);
        self.active_sampling_request.as_ref()
    }

    pub fn record_result(
        &mut self,
        record: ToolResultRecord,
        payload: Option<ToolPayloadHistoryEntry>,
    ) {
        self.tool_result_history.push(record);
        if let Some(payload) = payload {
            self.tool_payload_history.push(payload);
        }
    }

    pub fn prune_for_assistant_index(&mut self, index: usize) {
        self.prune_records(|candidate| candidate == index);
    }

    pub fn prune_from_index(&mut self, start: usize) {
        self.prune_records(|candidate| candidate >= start);
    }

    pub fn clear_server_records(&mut self, server_id: &str) {
        self.tool_result_history.retain(|record| {
            record
                .server_id
                .as_deref()
                .map(|id| !id.eq_ignore_ascii_case(server_id))
                .unwrap_or(true)
        });
        self.tool_payload_history.retain(|entry| {
            entry
                .server_id
                .as_deref()
                .map(|id| !id.eq_ignore_ascii_case(server_id))
                .unwrap_or(true)
        });
    }

    pub fn set_continuation(&mut self, messages: Vec<ChatMessage>, base: Vec<ChatMessage>) {
        self.continuation_messages = Some(StreamContinuation {
            api_messages: messages,
            api_messages_base: base,
        });
    }

    pub fn take_continuation(&mut self) -> Option<StreamContinuation> {
        self.continuation_messages.take()
    }

    fn prune_records<F>(&mut self, predicate: F)
    where
        F: Fn(usize) -> bool,
    {
        self.tool_result_history.retain(|record| {
            record
                .assistant_message_index
                .map(|idx| !predicate(idx))
                .unwrap_or(true)
        });
        self.tool_payload_history.retain(|entry| {
            entry
                .assistant_message_index
                .map(|idx| !predicate(idx))
                .unwrap_or(true)
        });
    }
}

impl McpInitState {
    pub fn begin(&mut self) {
        self.in_progress = true;
        self.complete = false;
    }

    pub fn complete(&mut self) -> Option<String> {
        self.in_progress = false;
        self.complete = true;
        self.deferred_message.take()
    }

    pub fn should_defer(&self) -> bool {
        self.in_progress && !self.complete
    }

    pub fn reset(&mut self) {
        self.in_progress = false;
        self.complete = false;
        self.deferred_message = None;
    }
}

/// Result of attempting to load a character during session initialization.
#[derive(Debug)]
pub(crate) struct CharacterLoadOutcome {
    pub character: Option<CharacterCard>,
    pub errors: Vec<String>,
}

pub fn exit_with_provider_resolution_error(err: &ProviderResolutionError) -> ! {
    eprintln!("{}", err);
    let fixes = err.quick_fixes();
    if !fixes.is_empty() {
        eprintln!();
        eprintln!("💡 Quick fixes:");
        for fix in fixes {
            eprintln!("{fix}");
        }
    }
    std::process::exit(err.exit_code());
}

pub fn exit_if_env_only_missing_env(env_only: bool) {
    if env_only && std::env::var("OPENAI_API_KEY").is_err() {
        eprintln!("❌ --env used but OPENAI_API_KEY is not set");
        std::process::exit(2);
    }
}

/// Load character card for session initialization
/// Priority: CLI flag > default for provider/model > None
pub(crate) fn load_character_for_session(
    cli_character: Option<&str>,
    provider: &str,
    model: &str,
    config: &Config,
    character_service: &mut CharacterService,
) -> Result<CharacterLoadOutcome, Box<dyn std::error::Error>> {
    // If CLI character is specified, use it (highest priority)
    if let Some(character_name) = cli_character {
        let card = character_service
            .resolve(character_name)
            .map_err(|err| Box::new(err) as Box<dyn std::error::Error>)?;
        return Ok(CharacterLoadOutcome {
            character: Some(card),
            errors: Vec::new(),
        });
    }

    // Otherwise, check for default character for this provider/model
    let mut errors = Vec::new();
    match character_service.load_default_for_session(provider, model, config) {
        Ok(Some((_name, card))) => {
            return Ok(CharacterLoadOutcome {
                character: Some(card),
                errors,
            })
        }
        Ok(None) => {}
        Err(err) => {
            if let Some(default_character) = config.get_default_character(provider, model) {
                errors.push(format!(
                    "Failed to load default character '{}' for {}:{}: {}",
                    default_character, provider, model, err
                ));
            } else {
                errors.push(format!(
                    "Failed to load default character for {}:{}: {}",
                    provider, model, err
                ));
            }
        }
    }

    // No character specified or found
    Ok(CharacterLoadOutcome {
        character: None,
        errors,
    })
}

pub(crate) fn initialize_logging(
    log_file: Option<String>,
) -> Result<LoggingState, Box<dyn std::error::Error>> {
    let mut logging = LoggingState::new(log_file.clone())?;
    if let Some(log_path) = log_file {
        if let Err(e) = logging.set_log_file(log_path.clone()) {
            eprintln!(
                "Warning: Failed to enable startup logging ({}): {}",
                log_path, e
            );
        }
    }
    Ok(logging)
}

fn theme_from_appearance(appearance: Appearance) -> Theme {
    match appearance {
        Appearance::Light => Theme::light(),
        Appearance::Dark => Theme::dark_default(),
    }
}

pub(crate) fn resolve_theme(config: &Config) -> Theme {
    let resolved_theme = match &config.theme {
        Some(name) => {
            if let Some(ct) = config.get_custom_theme(name) {
                Theme::from_spec(&theme_spec_from_custom(ct))
            } else if let Some(spec) = find_builtin_theme(name) {
                Theme::from_spec(&spec)
            } else {
                Theme::from_name(name)
            }
        }
        None => detect_preferred_appearance()
            .map(theme_from_appearance)
            .unwrap_or_else(Theme::dark_default),
    };

    quantize_theme_for_current_terminal(resolved_theme)
}

pub(crate) async fn prepare_with_auth(
    input: PrepareWithAuthInput<'_>,
) -> Result<SessionBootstrap, Box<dyn std::error::Error>> {
    let PrepareWithAuthInput {
        model,
        log_file,
        provider,
        env_only,
        config,
        pre_resolved_session,
        character,
        character_service,
    } = input;

    let session = if let Some(session) = pre_resolved_session {
        session
    } else if env_only {
        resolve_env_session().map_err(|err| Box::new(err) as Box<dyn std::error::Error>)?
    } else {
        let auth_manager = AuthManager::new()?;
        match resolve_session(&auth_manager, config, provider.as_deref()) {
            Ok(session) => session,
            Err(ResolveSessionError::Provider(err)) => return Err(Box::new(err)),
            Err(ResolveSessionError::Source(err)) => return Err(err),
        }
    };

    let (api_key, base_url, provider_name, provider_display_name) = session.into_tuple();

    let final_model = if model != "default" {
        model
    } else if let Some(default_model) = config.get_default_model(&provider_name) {
        default_model.clone()
    } else {
        String::new()
    };

    let _api_endpoint = construct_api_url(&base_url, "chat/completions");

    let logging = initialize_logging(log_file)?;
    let resolved_theme = resolve_theme(config);

    // Load character card if specified via CLI or config
    let CharacterLoadOutcome {
        character: active_character,
        errors: startup_errors,
    } = load_character_for_session(
        character.as_deref(),
        &provider_name,
        &final_model,
        config,
        character_service,
    )?;

    let session = SessionContext {
        client: Client::new(),
        model: final_model,
        api_key,
        base_url,
        provider_name: provider_name.to_string(),
        provider_display_name,
        logging,
        stream_cancel_token: None,
        current_stream_id: 0,
        last_retry_time: Instant::now(),
        retrying_message_index: None,
        is_refining: false,
        original_refining_content: None,
        last_refine_prompt: None,
        refine_instructions: config.refine_instructions().into_owned(),
        refine_prefix: config.refine_prefix().into_owned(),
        startup_env_only: false,
        mcp_disabled: false,
        active_character,
        character_greeting_shown: false,
        has_received_assistant_message: false,
        tool_pipeline: ToolPipelineState::default(),
        mcp_init: McpInitState::default(),
        active_assistant_message_index: None,
        mcp_tools_enabled: false,
        mcp_tools_unsupported: false,
    };

    Ok(SessionBootstrap {
        session,
        theme: resolved_theme,
        startup_requires_provider: false,
        startup_errors,
    })
}

pub(crate) async fn prepare_uninitialized(
    log_file: Option<String>,
    _character_service: &mut CharacterService,
) -> Result<UninitializedSessionBootstrap, Box<dyn std::error::Error>> {
    let config = Config::load()?;

    let logging = initialize_logging(log_file)?;
    let resolved_theme = resolve_theme(&config);

    let session = SessionContext {
        client: Client::new(),
        model: String::new(),
        api_key: String::new(),
        base_url: String::new(),
        provider_name: String::new(),
        provider_display_name: "(no provider selected)".to_string(),
        logging,
        stream_cancel_token: None,
        current_stream_id: 0,
        last_retry_time: Instant::now(),
        retrying_message_index: None,
        is_refining: false,
        original_refining_content: None,
        last_refine_prompt: None,
        refine_instructions: config.refine_instructions().into_owned(),
        refine_prefix: config.refine_prefix().into_owned(),
        startup_env_only: false,
        mcp_disabled: false,
        active_character: None,
        character_greeting_shown: false,
        has_received_assistant_message: false,
        tool_pipeline: ToolPipelineState::default(),
        mcp_init: McpInitState::default(),
        active_assistant_message_index: None,
        mcp_tools_enabled: false,
        mcp_tools_unsupported: false,
    };

    Ok(UninitializedSessionBootstrap {
        session,
        theme: resolved_theme,
        config,
        startup_requires_provider: true,
    })
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::core::config::data::Config;
    use crate::core::providers::ProviderSession;
    use crate::utils::test_utils::TestEnvVarGuard;
    use tempfile::tempdir;

    #[test]
    fn theme_from_appearance_matches_light_theme() {
        let theme = theme_from_appearance(Appearance::Light);
        assert_eq!(theme.background_color, Theme::light().background_color);
    }

    #[test]
    fn theme_from_appearance_matches_dark_theme() {
        let theme = theme_from_appearance(Appearance::Dark);
        assert_eq!(
            theme.background_color,
            Theme::dark_default().background_color
        );
    }

    #[test]
    fn resolve_theme_prefers_configured_theme() {
        let config = Config {
            theme: Some("light".to_string()),
            ..Default::default()
        };

        let resolved_theme = resolve_theme(&config);
        let expected_theme = quantize_theme_for_current_terminal(Theme::light());
        assert_eq!(
            resolved_theme.background_color,
            expected_theme.background_color
        );
    }

    #[test]
    fn prepare_with_auth_uses_pre_resolved_session() {
        let provider_session = ProviderSession {
            api_key: "test-key".to_string(),
            base_url: "https://example.invalid".to_string(),
            provider_id: "test-provider".to_string(),
            provider_display_name: "Test Provider".to_string(),
        };

        let config = Config::default();
        let runtime = tokio::runtime::Runtime::new().expect("runtime");
        let mut service = crate::character::CharacterService::new();

        let bootstrap = runtime
            .block_on(super::prepare_with_auth(super::PrepareWithAuthInput {
                model: "default".to_string(),
                log_file: None,
                provider: None,
                env_only: false,
                config: &config,
                pre_resolved_session: Some(provider_session.clone()),
                character: None,
                character_service: &mut service,
            }))
            .expect("prepare_with_auth");

        assert_eq!(bootstrap.session.api_key, provider_session.api_key);
        assert_eq!(bootstrap.session.base_url, provider_session.base_url);
        assert_eq!(
            bootstrap.session.provider_name,
            provider_session.provider_id
        );
        assert_eq!(
            bootstrap.session.provider_display_name,
            provider_session.provider_display_name
        );
        assert!(!bootstrap.startup_requires_provider);
        assert!(!bootstrap.session.startup_env_only);
        assert!(bootstrap.session.active_character.is_none());
        assert!(!bootstrap.session.character_greeting_shown);
    }

    #[test]
    fn prepare_with_auth_uses_env_session_when_env_only() {
        let mut env_guard = TestEnvVarGuard::new();
        env_guard.set_var("OPENAI_API_KEY", "sk-env");
        env_guard.set_var("OPENAI_BASE_URL", "https://example.com/v1");

        let config = Config::default();
        let runtime = tokio::runtime::Runtime::new().expect("runtime");
        let mut service = crate::character::CharacterService::new();

        let bootstrap = runtime
            .block_on(super::prepare_with_auth(super::PrepareWithAuthInput {
                model: "default".to_string(),
                log_file: None,
                provider: None,
                env_only: true,
                config: &config,
                pre_resolved_session: None,
                character: None,
                character_service: &mut service,
            }))
            .expect("prepare_with_auth");

        assert_eq!(bootstrap.session.api_key, "sk-env");
        assert_eq!(bootstrap.session.base_url, "https://example.com/v1");
        assert_eq!(bootstrap.session.provider_name, "openai-compatible");
        assert_eq!(bootstrap.session.provider_display_name, "OpenAI-compatible");
    }

    #[test]
    fn initialize_logging_with_file_writes_initial_entry() {
        let temp_dir = tempdir().expect("tempdir");
        let log_path = temp_dir.path().join("startup.log");
        let log_file = log_path.to_string_lossy().to_string();

        let logging = initialize_logging(Some(log_file.clone())).expect("logging initialized");
        logging
            .log_message("Hello from startup")
            .expect("log message");

        let contents = std::fs::read_to_string(&log_path).expect("read log file");
        // "## Logging started" is an app message added by the command handler, not by initialize_logging
        assert!(contents.contains("Hello from startup"));
    }

    #[test]
    fn tool_pipeline_reset_clears_active_and_queues() {
        let mut pipeline = ToolPipelineState::default();
        pipeline.pending_tool_queue.push_back(ToolCallRequest {
            server_id: "s".into(),
            tool_name: "t".into(),
            arguments: None,
            raw_arguments: "{}".into(),
            tool_call_id: Some("call".into()),
        });
        pipeline.active_tool_request = pipeline.pending_tool_queue.front().cloned();
        pipeline.set_continuation(Vec::new(), Vec::new());

        pipeline.reset();

        assert!(pipeline.pending_tool_queue.is_empty());
        assert!(pipeline.pending_sampling_queue.is_empty());
        assert!(pipeline.active_tool_request.is_none());
        assert!(pipeline.active_sampling_request.is_none());
        assert!(pipeline.continuation_messages.is_none());
    }

    #[test]
    fn tool_pipeline_advance_tool_queue_handles_empty_and_item() {
        let mut pipeline = ToolPipelineState::default();
        assert!(pipeline.advance_tool_queue().is_none());

        pipeline.pending_tool_queue.push_back(ToolCallRequest {
            server_id: "s".into(),
            tool_name: "t".into(),
            arguments: None,
            raw_arguments: "{}".into(),
            tool_call_id: None,
        });

        let request = pipeline.advance_tool_queue().expect("advanced");
        assert_eq!(request.tool_name, "t");
        assert!(pipeline.pending_tool_queue.is_empty());
    }

    #[test]
    fn tool_pipeline_prune_for_assistant_index_removes_matching_records() {
        let mut pipeline = ToolPipelineState::default();
        pipeline.tool_result_history.push(ToolResultRecord {
            tool_name: "keep".into(),
            server_name: None,
            server_id: Some("server".into()),
            status: ToolResultStatus::Success,
            failure_kind: None,
            content: "ok".into(),
            summary: "ok".into(),
            tool_call_id: Some("keep".into()),
            raw_arguments: None,
            assistant_message_index: Some(1),
        });
        pipeline.tool_result_history.push(ToolResultRecord {
            tool_name: "drop".into(),
            server_name: None,
            server_id: Some("server".into()),
            status: ToolResultStatus::Error,
            failure_kind: Some(ToolFailureKind::ToolError),
            content: "fail".into(),
            summary: "fail".into(),
            tool_call_id: Some("drop".into()),
            raw_arguments: None,
            assistant_message_index: Some(3),
        });

        pipeline.prune_for_assistant_index(3);

        assert_eq!(pipeline.tool_result_history.len(), 1);
        assert_eq!(pipeline.tool_result_history[0].tool_name, "keep");
    }

    #[test]
    fn tool_pipeline_continuation_round_trip_and_drain() {
        let mut pipeline = ToolPipelineState::default();
        pipeline.set_continuation(Vec::new(), Vec::new());

        assert!(pipeline.take_continuation().is_some());
        assert!(pipeline.take_continuation().is_none());
    }

    #[test]
    fn mcp_init_state_complete_returns_message_and_clears_progress() {
        let mut state = McpInitState::default();
        state.begin();
        state.deferred_message = Some("hello".into());

        let deferred = state.complete();

        assert_eq!(deferred.as_deref(), Some("hello"));
        assert!(state.complete);
        assert!(!state.in_progress);
        assert!(state.deferred_message.is_none());
    }

    #[test]
    fn mcp_init_state_should_defer_only_while_in_progress() {
        let mut state = McpInitState::default();
        assert!(!state.should_defer());

        state.begin();
        assert!(state.should_defer());

        state.complete();
        assert!(!state.should_defer());
    }

    #[test]
    fn mcp_init_state_reset_restores_default() {
        let mut state = McpInitState {
            in_progress: true,
            complete: true,
            deferred_message: Some("queued".into()),
        };

        state.reset();

        assert!(!state.in_progress);
        assert!(!state.complete);
        assert!(state.deferred_message.is_none());
    }
    #[test]
    fn session_context_set_character() {
        use crate::character::card::{CharacterCard, CharacterData};

        let mut session = SessionContext {
            client: Client::new(),
            model: String::new(),
            api_key: String::new(),
            base_url: String::new(),
            provider_name: String::new(),
            provider_display_name: String::new(),
            logging: LoggingState::new(None).unwrap(),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: None,
            character_greeting_shown: false,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        };

        let card = CharacterCard {
            spec: "chara_card_v2".to_string(),
            spec_version: "2.0".to_string(),
            data: CharacterData {
                name: "Test".to_string(),
                description: "Test character".to_string(),
                personality: "Friendly".to_string(),
                scenario: "Testing".to_string(),
                first_mes: "Hello!".to_string(),
                mes_example: String::new(),
                creator_notes: None,
                system_prompt: None,
                post_history_instructions: None,
                alternate_greetings: None,
                tags: None,
                creator: None,
                character_version: None,
            },
        };

        session.set_character(card.clone());
        assert!(session.active_character.is_some());
        assert_eq!(session.get_character().unwrap().data.name, "Test");
        assert!(!session.character_greeting_shown);
    }

    #[test]
    fn session_context_clear_character() {
        use crate::character::card::{CharacterCard, CharacterData};

        let mut session = SessionContext {
            client: Client::new(),
            model: String::new(),
            api_key: String::new(),
            base_url: String::new(),
            provider_name: String::new(),
            provider_display_name: String::new(),
            logging: LoggingState::new(None).unwrap(),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: Some(CharacterCard {
                spec: "chara_card_v2".to_string(),
                spec_version: "2.0".to_string(),
                data: CharacterData {
                    name: "Test".to_string(),
                    description: "Test character".to_string(),
                    personality: "Friendly".to_string(),
                    scenario: "Testing".to_string(),
                    first_mes: "Hello!".to_string(),
                    mes_example: String::new(),
                    creator_notes: None,
                    system_prompt: None,
                    post_history_instructions: None,
                    alternate_greetings: None,
                    tags: None,
                    creator: None,
                    character_version: None,
                },
            }),
            character_greeting_shown: true,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        };

        session.clear_character();
        assert!(session.active_character.is_none());
        assert!(!session.character_greeting_shown);
    }

    #[test]
    fn session_context_should_show_greeting() {
        use crate::character::card::{CharacterCard, CharacterData};

        let mut session = SessionContext {
            client: Client::new(),
            model: String::new(),
            api_key: String::new(),
            base_url: String::new(),
            provider_name: String::new(),
            provider_display_name: String::new(),
            logging: LoggingState::new(None).unwrap(),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: Some(CharacterCard {
                spec: "chara_card_v2".to_string(),
                spec_version: "2.0".to_string(),
                data: CharacterData {
                    name: "Test".to_string(),
                    description: "Test character".to_string(),
                    personality: "Friendly".to_string(),
                    scenario: "Testing".to_string(),
                    first_mes: "Hello!".to_string(),
                    mes_example: String::new(),
                    creator_notes: None,
                    system_prompt: None,
                    post_history_instructions: None,
                    alternate_greetings: None,
                    tags: None,
                    creator: None,
                    character_version: None,
                },
            }),
            character_greeting_shown: false,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        };

        // Should show greeting when character is active and greeting not shown
        assert!(session.should_show_greeting());

        // Should not show greeting after marking as shown
        session.mark_greeting_shown();
        assert!(!session.should_show_greeting());
    }

    #[test]
    fn session_context_should_not_show_empty_greeting() {
        use crate::character::card::{CharacterCard, CharacterData};

        let session = SessionContext {
            client: Client::new(),
            model: String::new(),
            api_key: String::new(),
            base_url: String::new(),
            provider_name: String::new(),
            provider_display_name: String::new(),
            logging: LoggingState::new(None).unwrap(),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: Some(CharacterCard {
                spec: "chara_card_v2".to_string(),
                spec_version: "2.0".to_string(),
                data: CharacterData {
                    name: "Test".to_string(),
                    description: "Test character".to_string(),
                    personality: "Friendly".to_string(),
                    scenario: "Testing".to_string(),
                    first_mes: "   ".to_string(), // Empty/whitespace greeting
                    mes_example: String::new(),
                    creator_notes: None,
                    system_prompt: None,
                    post_history_instructions: None,
                    alternate_greetings: None,
                    tags: None,
                    creator: None,
                    character_version: None,
                },
            }),
            character_greeting_shown: false,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        };

        // Should not show empty/whitespace greeting
        assert!(!session.should_show_greeting());
    }

    #[test]
    fn load_character_for_session_no_character() {
        let config = Config::default();
        let mut service = crate::character::CharacterService::new();
        let outcome =
            super::load_character_for_session(None, "openai", "gpt-4", &config, &mut service)
                .expect("load_character_for_session");

        assert!(outcome.character.is_none());
        assert!(outcome.errors.is_empty());
    }

    #[test]
    fn load_character_for_session_cli_takes_precedence() {
        use crate::character::card::{CharacterCard, CharacterData};
        use std::collections::HashMap;
        use std::fs;

        let temp_dir = tempdir().expect("tempdir");
        let cards_dir = temp_dir.path().join("cards");
        fs::create_dir_all(&cards_dir).expect("create cards dir");

        // Create a test card
        let card = CharacterCard {
            spec: "chara_card_v2".to_string(),
            spec_version: "2.0".to_string(),
            data: CharacterData {
                name: "TestChar".to_string(),
                description: "Test".to_string(),
                personality: "Friendly".to_string(),
                scenario: "Testing".to_string(),
                first_mes: "Hello!".to_string(),
                mes_example: String::new(),
                creator_notes: None,
                system_prompt: None,
                post_history_instructions: None,
                alternate_greetings: None,
                tags: None,
                creator: None,
                character_version: None,
            },
        };

        let card_path = cards_dir.join("testchar.json");
        let card_json = serde_json::to_string(&card).expect("serialize card");
        fs::write(&card_path, card_json).expect("write card");

        // Create config with a different default character
        let mut default_chars = HashMap::new();
        let mut openai_models = HashMap::new();
        openai_models.insert("gpt-4".to_string(), "other-char".to_string());
        default_chars.insert("openai".to_string(), openai_models);

        let config = Config {
            default_characters: default_chars,
            ..Default::default()
        };

        // CLI character should take precedence (but we can't test this without
        // setting up the full cards directory structure, so we'll just verify
        // the logic exists in the function)
        // This test verifies the function signature and basic behavior
        let mut service = crate::character::CharacterService::new();
        let result = super::load_character_for_session(
            Some(card_path.to_str().unwrap()),
            "openai",
            "gpt-4",
            &config,
            &mut service,
        );
        let outcome = result.expect("cli load");
        assert!(outcome.errors.is_empty());
        assert_eq!(
            outcome.character.expect("character loaded").data.name,
            "TestChar"
        );
    }

    #[test]
    fn load_character_for_session_filepath_fallback() {
        use crate::character::card::{CharacterCard, CharacterData};
        use std::fs;

        let temp_dir = tempdir().expect("tempdir");

        // Create a character card file outside the cards directory
        let card = CharacterCard {
            spec: "chara_card_v2".to_string(),
            spec_version: "2.0".to_string(),
            data: CharacterData {
                name: "FilePathChar".to_string(),
                description: "Loaded from file path".to_string(),
                personality: "Friendly".to_string(),
                scenario: "Testing".to_string(),
                first_mes: "Hello from file!".to_string(),
                mes_example: String::new(),
                creator_notes: None,
                system_prompt: None,
                post_history_instructions: None,
                alternate_greetings: None,
                tags: None,
                creator: None,
                character_version: None,
            },
        };

        let card_path = temp_dir.path().join("external_card.json");
        let card_json = serde_json::to_string(&card).expect("serialize card");
        fs::write(&card_path, card_json).expect("write card");

        let config = Config::default();
        let mut service = crate::character::CharacterService::new();

        // Load character by file path (should work as fallback)
        let result = super::load_character_for_session(
            Some(card_path.to_str().unwrap()),
            "openai",
            "gpt-4",
            &config,
            &mut service,
        );
        assert!(result.is_ok());
        let outcome = result.unwrap();
        assert!(outcome.character.is_some());
        assert_eq!(outcome.character.unwrap().data.name, "FilePathChar");
        assert!(outcome.errors.is_empty());
    }

    #[test]
    fn load_character_for_session_cards_dir_priority() {
        use crate::character::card::{CharacterCard, CharacterData};
        use std::fs;

        let temp_dir = tempdir().expect("tempdir");

        // Create a character card file in current directory with name "data"
        let wrong_card = CharacterCard {
            spec: "chara_card_v2".to_string(),
            spec_version: "2.0".to_string(),
            data: CharacterData {
                name: "WrongChar".to_string(),
                description: "Should not be loaded".to_string(),
                personality: "Wrong".to_string(),
                scenario: "Wrong".to_string(),
                first_mes: "Wrong!".to_string(),
                mes_example: String::new(),
                creator_notes: None,
                system_prompt: None,
                post_history_instructions: None,
                alternate_greetings: None,
                tags: None,
                creator: None,
                character_version: None,
            },
        };

        let wrong_path = temp_dir.path().join("data.json");
        let wrong_json = serde_json::to_string(&wrong_card).expect("serialize card");
        fs::write(&wrong_path, wrong_json).expect("write card");

        let config = Config::default();

        // Try to load character named "data" - should fail because it's not in cards dir
        // and we're not providing the full path
        let mut service = crate::character::CharacterService::new();
        let result = super::load_character_for_session(
            Some("data"),
            "openai",
            "gpt-4",
            &config,
            &mut service,
        );

        // Should fail because "data" is not found in cards directory
        // and "data" as a relative path doesn't exist
        assert!(result.is_err());
    }

    #[test]
    fn session_context_get_character_returns_none_initially() {
        let session = SessionContext {
            client: Client::new(),
            model: String::new(),
            api_key: String::new(),
            base_url: String::new(),
            provider_name: String::new(),
            provider_display_name: String::new(),
            logging: LoggingState::new(None).unwrap(),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: None,
            character_greeting_shown: false,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        };

        assert!(session.get_character().is_none());
        assert!(!session.should_show_greeting());
    }

    #[test]
    fn session_context_greeting_lifecycle() {
        use crate::character::card::{CharacterCard, CharacterData};

        let mut session = SessionContext {
            client: Client::new(),
            model: String::new(),
            api_key: String::new(),
            base_url: String::new(),
            provider_name: String::new(),
            provider_display_name: String::new(),
            logging: LoggingState::new(None).unwrap(),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: None,
            character_greeting_shown: false,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        };

        // Initially no greeting
        assert!(!session.should_show_greeting());

        // Set character with greeting
        let card = CharacterCard {
            spec: "chara_card_v2".to_string(),
            spec_version: "2.0".to_string(),
            data: CharacterData {
                name: "Test".to_string(),
                description: "Test character".to_string(),
                personality: "Friendly".to_string(),
                scenario: "Testing".to_string(),
                first_mes: "Hello there!".to_string(),
                mes_example: String::new(),
                creator_notes: None,
                system_prompt: None,
                post_history_instructions: None,
                alternate_greetings: None,
                tags: None,
                creator: None,
                character_version: None,
            },
        };

        session.set_character(card);

        // Should show greeting now
        assert!(session.should_show_greeting());

        // Mark as shown
        session.mark_greeting_shown();

        // Should not show greeting anymore
        assert!(!session.should_show_greeting());

        // Clear character
        session.clear_character();

        // Should not show greeting after clearing
        assert!(!session.should_show_greeting());
    }

    #[test]
    fn session_context_reselecting_same_character_preserves_greeting_flag() {
        use crate::character::card::{CharacterCard, CharacterData};

        let mut session = SessionContext {
            client: Client::new(),
            model: String::new(),
            api_key: String::new(),
            base_url: String::new(),
            provider_name: String::new(),
            provider_display_name: String::new(),
            logging: LoggingState::new(None).unwrap(),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: None,
            character_greeting_shown: false,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        };

        let card = CharacterCard {
            spec: "chara_card_v2".to_string(),
            spec_version: "2.0".to_string(),
            data: CharacterData {
                name: "Test".to_string(),
                description: "Test character".to_string(),
                personality: "Friendly".to_string(),
                scenario: "Testing".to_string(),
                first_mes: "Hello there!".to_string(),
                mes_example: String::new(),
                creator_notes: None,
                system_prompt: None,
                post_history_instructions: None,
                alternate_greetings: None,
                tags: None,
                creator: None,
                character_version: None,
            },
        };

        // Set character and mark greeting as shown
        session.set_character(card.clone());
        assert!(session.should_show_greeting());
        session.mark_greeting_shown();
        assert!(!session.should_show_greeting());

        // Re-select the same character
        session.set_character(card);

        // Greeting flag should still be true (greeting already shown)
        assert!(!session.should_show_greeting());
        assert!(session.character_greeting_shown);
    }

    #[test]
    fn session_context_selecting_different_character_resets_greeting_flag() {
        use crate::character::card::{CharacterCard, CharacterData};

        let mut session = SessionContext {
            client: Client::new(),
            model: String::new(),
            api_key: String::new(),
            base_url: String::new(),
            provider_name: String::new(),
            provider_display_name: String::new(),
            logging: LoggingState::new(None).unwrap(),
            stream_cancel_token: None,
            current_stream_id: 0,
            last_retry_time: Instant::now(),
            retrying_message_index: None,
            is_refining: false,
            original_refining_content: None,
            last_refine_prompt: None,
            refine_instructions: DEFAULT_REFINE_INSTRUCTIONS.to_string(),
            refine_prefix: DEFAULT_REFINE_PREFIX.to_string(),
            startup_env_only: false,
            mcp_disabled: false,
            active_character: None,
            character_greeting_shown: false,
            has_received_assistant_message: false,
            tool_pipeline: ToolPipelineState::default(),
            mcp_init: McpInitState::default(),
            active_assistant_message_index: None,
            mcp_tools_enabled: false,
            mcp_tools_unsupported: false,
        };

        let card1 = CharacterCard {
            spec: "chara_card_v2".to_string(),
            spec_version: "2.0".to_string(),
            data: CharacterData {
                name: "Test1".to_string(),
                description: "Test character 1".to_string(),
                personality: "Friendly".to_string(),
                scenario: "Testing".to_string(),
                first_mes: "Hello from Test1!".to_string(),
                mes_example: String::new(),
                creator_notes: None,
                system_prompt: None,
                post_history_instructions: None,
                alternate_greetings: None,
                tags: None,
                creator: None,
                character_version: None,
            },
        };

        let card2 = CharacterCard {
            spec: "chara_card_v2".to_string(),
            spec_version: "2.0".to_string(),
            data: CharacterData {
                name: "Test2".to_string(),
                description: "Test character 2".to_string(),
                personality: "Helpful".to_string(),
                scenario: "Testing".to_string(),
                first_mes: "Hello from Test2!".to_string(),
                mes_example: String::new(),
                creator_notes: None,
                system_prompt: None,
                post_history_instructions: None,
                alternate_greetings: None,
                tags: None,
                creator: None,
                character_version: None,
            },
        };

        // Set first character and mark greeting as shown
        session.set_character(card1);
        session.mark_greeting_shown();
        assert!(!session.should_show_greeting());

        // Select a different character
        session.set_character(card2);

        // Greeting flag should be reset (new character, should show greeting)
        assert!(session.should_show_greeting());
        assert!(!session.character_greeting_shown);
    }
}