@@ -46,10 +46,29 @@ export class ChatHistoryTrimmer {
46
46
return this . output ;
47
47
}
48
48
49
+ const systemPrompt = this . messages . find ( m => m . role === 'system' ) ;
50
+ const firstUserMessage = this . messages . find ( m => m . role === 'user' ) ;
49
51
const last = this . messages [ this . messages . length - 1 ] ;
52
+
53
+ this . output = [
54
+ tokenizer . truncateMessage ( systemPrompt ! , 100 ) ,
55
+ ] ;
56
+
57
+ if ( firstUserMessage === last ) {
58
+ this . output . push ( tokenizer . truncateMessage ( firstUserMessage , this . options . maxTokens - 100 ) ) ;
59
+ } else {
60
+ this . output . push ( tokenizer . truncateMessage ( firstUserMessage ! , 100 ) ) ;
61
+ this . output . push ( tokenizer . truncateMessage ( last , this . options . maxTokens - 200 ) ) ;
62
+ }
63
+
64
+ excessTokens = this . countExcessTokens ( ) ;
65
+ if ( excessTokens === 0 ) {
66
+ return this . output ;
67
+ }
68
+
50
69
this . output = [
51
70
tokenizer . truncateMessage ( last , this . options . maxTokens ) ,
52
- ]
71
+ ] ;
53
72
54
73
return this . output ;
55
74
}
@@ -82,13 +101,13 @@ export class ChatHistoryTrimmer {
82
101
const output : OpenAIMessage [ ] = [ ...this . output ] ;
83
102
84
103
for ( let i = 0 ; i < this . output . length && tokenizer . countTokensForMessages ( output ) > this . options . maxTokens ; i ++ ) {
85
- if ( i == lastMessageIndex ) {
104
+ if ( i === lastMessageIndex ) {
86
105
continue ;
87
106
}
88
- if ( i !== systemPromptIndex && ! this . options . preserveSystemPrompt ) {
107
+ if ( i === systemPromptIndex || this . options . preserveSystemPrompt ) {
89
108
continue ;
90
109
}
91
- if ( i !== firstUserMessageIndex && this . options . preserveFirstUserMessage ) {
110
+ if ( i === firstUserMessageIndex || this . options . preserveFirstUserMessage ) {
92
111
continue ;
93
112
}
94
113
output [ i ] . content = '' ;
0 commit comments