File tree 1 file changed +3
-3
lines changed
packages/plugin-node/src/services
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ export class TokenizationService
32
32
const tokenizerType = this . runtime . getSetting ( "TOKENIZER_TYPE" ) ;
33
33
34
34
if ( ! tokenizerModel || ! tokenizerType ) {
35
- // Default to TikToken truncation using the "gpt-4o-mini " model if tokenizer settings are not defined
36
- return this . truncateTiktoken ( "gpt-4o-mini " , context , maxTokens ) ;
35
+ // Default to TikToken truncation using the "gpt-4o" model if tokenizer settings are not defined
36
+ return this . truncateTiktoken ( "gpt-4o" , context , maxTokens ) ;
37
37
}
38
38
39
39
// Choose the truncation method based on tokenizer type
@@ -49,7 +49,7 @@ export class TokenizationService
49
49
) ;
50
50
}
51
51
52
- console . error ( `Unsupported tokenizer type: ${ tokenizerType } ` ) ;
52
+ elizaLogger . error ( `Unsupported tokenizer type: ${ tokenizerType } ` ) ;
53
53
}
54
54
55
55
async truncateAuto ( modelPath : string , context : string , maxTokens : number ) {
You can’t perform that action at this time.
0 commit comments