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