mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-14 03:30:19 +00:00
14 lines
350 B
JavaScript
14 lines
350 B
JavaScript
const { description } = require('./package.json');
|
|
const { defineConfig } = require('@lobehub/i18n-cli');
|
|
|
|
module.exports = defineConfig({
|
|
reference: description,
|
|
entry: 'public/locales/zh_CN',
|
|
entryLocale: 'zh_CN',
|
|
output: 'public/locales',
|
|
outputLocales: ['en_US'],
|
|
splitToken: 2500,
|
|
temperature: 0,
|
|
modelName: 'gpt-3.5-turbo',
|
|
});
|