Skip to content

Commit 70d90ab

Browse files
committed
use 4o as default model
1 parent e97a948 commit 70d90ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/plugin-node/src/services/tokenizer.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export class TokenizationService
3232
const tokenizerType = this.runtime.getSetting("TOKENIZER_TYPE");
3333

3434
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);
3737
}
3838

3939
// Choose the truncation method based on tokenizer type
@@ -49,7 +49,7 @@ export class TokenizationService
4949
);
5050
}
5151

52-
console.error(`Unsupported tokenizer type: ${tokenizerType}`);
52+
elizaLogger.error(`Unsupported tokenizer type: ${tokenizerType}`);
5353
}
5454

5555
async truncateAuto(modelPath: string, context: string, maxTokens: number) {

0 commit comments

Comments
 (0)