mirror of
https://github.com/chrisvel/tududi.git
synced 2026-01-06 03:30:48 -06:00
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
localesDir: path.join(__dirname, 'public/locales'),
|
|
baseLanguage: 'en',
|
|
translationFiles: ['translation.json', 'quotes.json'],
|
|
batchSize: 20,
|
|
model: 'gpt-4o-mini',
|
|
temperature: 0.3,
|
|
};
|