Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 14 additions & 17 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion freebuff/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"clsx": "^2.1.1",
"framer-motion": "^11.13.3",
"lucide-react": "^0.487.0",
"next": "15.5.11",
"next": "15.5.16",
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"pino": "^9.6.0",
Expand Down
2 changes: 1 addition & 1 deletion freebuff/web/src/app/home-client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const faqs = [
{
question: 'What models do you use?',
answer:
'Pick DeepSeek V4 Pro (default and smartest, but its API collects data for training) or Kimi K2.6 (no data retention) as the main coding agent. Gemini 3.1 Flash Lite for finding files and research.\n\nConnect your ChatGPT subscription to unlock GPT-5.4 for deep thinking.',
'You can choose from DeepSeek V4 Pro, Kimi K2.6, and MiniMax M2.7.\n\nSession limits: DeepSeek and Kimi share 5 one-hour premium sessions per day. MiniMax has unlimited sessions.\n\n- DeepSeek V4 Pro: smartest. Its API collects data for training.\n- Kimi K2.6: balanced.\n- MiniMax M2.7: fastest.\n\nGemini 3.1 Flash Lite handles file finding and research. Connect your ChatGPT subscription to unlock GPT-5.4 for deep thinking.',
},
{
question: 'Which countries is Freebuff available in?',
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"baseline-browser-mapping": "^2.9.14",
"caniuse-lite": "^1.0.30001792",
"zod": "^4.2.1",
"signal-exit": "3.0.7"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/internal/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import { serverEnvSchema, serverProcessEnv } from './env-schema'
const isCI = process.env.CI === 'true' || process.env.CI === '1'
const envInput = { ...serverProcessEnv }

if (isCI) {
const ensureEnvDefault = (key: string, value: string) => {
if (!process.env[key]) {
process.env[key] = value
}
envInput[key as keyof typeof envInput] = process.env[key]
const ensureEnvDefault = (key: keyof typeof envInput, value: string) => {
if (!process.env[key]) {
process.env[key] = value
}
envInput[key] = process.env[key]
}

if (isCI) {
ensureEnvDefault('OPEN_ROUTER_API_KEY', 'test')
ensureEnvDefault('OPENAI_API_KEY', 'test')
ensureEnvDefault('ANTHROPIC_API_KEY', 'test')
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"geoip-lite": "^2.0.0",
"lucide-react": "^0.487.0",
"mermaid": "^11.8.1",
"next": "15.5.11",
"next": "15.5.16",
"next-auth": "^4.24.11",
"next-contentlayer2": "^0.5.8",
"next-themes": "^0.4.6",
Expand Down
Loading