mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-01-09 07:32:05 +08:00
* ✨ feat: gpt-4o-mini to openai provider * ♻️ refactor: move gpt-4o-mini as default model * ✅ test: fix test * 🐛 fix: set gpt-4o-mini as default model * chore: improve code * chore: improve code --------- Co-authored-by: arvinxx <arvinx@foxmail.com>
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
const { defineConfig } = require('@lobehub/seo-cli');
|
|
|
|
module.exports = defineConfig({
|
|
entry: ['./docs/**/*.mdx'],
|
|
modelName: 'gpt-4o-mini',
|
|
experimental: {
|
|
jsonMode: true,
|
|
},
|
|
});
|