Skip to content

Commit 6827d69

Browse files
committed
Label DeepSeek V4 Flash as collecting data for training
1 parent 62df119 commit 6827d69

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

common/src/__tests__/freebuff-models.test.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,20 @@ describe('freebuff model availability', () => {
2222
expect(DEFAULT_FREEBUFF_MODEL_ID).toBe(FREEBUFF_MINIMAX_MODEL_ID)
2323
})
2424

25-
test('DeepSeek carries the data-collection warning so users see it before picking', () => {
25+
test('DeepSeek Pro carries the data-collection warning so users see it before picking', () => {
2626
const deepseek = FREEBUFF_MODELS.find(
2727
(m) => m.id === FREEBUFF_DEEPSEEK_V4_PRO_MODEL_ID,
2828
)
2929
expect(deepseek?.warning).toBe('Collects data for training')
3030
})
3131

32+
test('DeepSeek Flash carries the data-collection warning so users see it before picking', () => {
33+
const deepseek = FREEBUFF_MODELS.find(
34+
(m) => m.id === FREEBUFF_DEEPSEEK_V4_FLASH_MODEL_ID,
35+
)
36+
expect(deepseek?.warning).toBe('Collects data for training')
37+
})
38+
3239
test('DeepSeek V4 Flash is selectable and unlimited', () => {
3340
expect(FREEBUFF_MODELS.map((model) => model.id)).toContain(
3441
FREEBUFF_DEEPSEEK_V4_FLASH_MODEL_ID,

common/src/constants/freebuff-models.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ export const FREEBUFF_MODELS = [
9292
displayName: 'DeepSeek V4 Flash',
9393
tagline: 'Most efficient',
9494
availability: 'always',
95+
warning: 'Collects data for training',
9596
},
9697
] as const satisfies readonly FreebuffModelOption[]
9798

freebuff/web/src/app/home-client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const faqs = [
2626
{
2727
question: 'What models do you use?',
2828
answer:
29-
'You can choose from:\n\n- DeepSeek V4 Pro: smartest. Its API collects data for training.\n- Kimi K2.6: balanced.\n- MiniMax M2.7: fastest.\n- DeepSeek V4 Flash: most efficient.\n\nAlso, Gemini 3.1 Flash Lite handles file finding and research. Connect your ChatGPT subscription to unlock GPT-5.4 for deep thinking.',
29+
'You can choose from:\n\n- DeepSeek V4 Pro: smartest. Its API collects data for training.\n- Kimi K2.6: balanced.\n- MiniMax M2.7: fastest.\n- DeepSeek V4 Flash: most efficient. Its API also collects data for training.\n\nAlso, Gemini 3.1 Flash Lite handles file finding and research. Connect your ChatGPT subscription to unlock GPT-5.4 for deep thinking.',
3030
},
3131
{
3232
question: 'Which countries is Freebuff available in?',

0 commit comments

Comments
 (0)