Skip to content

Commit fc5f0fe

Browse files
committed
Change website/docs to say free model is GLM 5.1!
1 parent c062551 commit fc5f0fe

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

freebuff/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ freebuff
5454

5555
**How can it be free?** Freebuff is supported by ads shown in the CLI.
5656

57-
**What models do you use?** MiniMax M2.5 as the main coding agent, Gemini 3.1 Flash Lite for finding files and research, and GPT-5.4 for deep thinking if you connect your ChatGPT subscription.
57+
**What models do you use?** GLM 5.1 as the main coding agent, Gemini 3.1 Flash Lite for finding files and research, and GPT-5.4 for deep thinking if you connect your ChatGPT subscription.
5858

5959
**Are you training on my data?** No. We only use model providers that do not train on our requests. Your code stays yours.
6060

freebuff/SPEC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Freebuff only supports **FREE mode**. All mode-related features are stripped.
8484
| `/agent:gpt-5` | Premium agent, not available in free tier |
8585
| `/review` | Uses thinker-gpt under the hood |
8686
| `/publish` | Agent publishing not available in free tier |
87-
| `/image` (+ `/img`, `/attach`) | Image attachments unavailable with free model (MiniMax M2.5) |
87+
| `/image` (+ `/img`, `/attach`) | Image attachments unavailable with free model (GLM 5.1) |
8888

8989
### Commands to KEEP
9090

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const faqs = [
3131
{
3232
question: 'What models do you use?',
3333
answer:
34-
'MiniMax M2.5 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.',
34+
'GLM 5.1 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.',
3535
},
3636
{
3737
question: 'Which countries is Freebuff available in?',
@@ -343,7 +343,7 @@ function FAQList() {
343343

344344
const PHILOSOPHY_WORDS = [
345345
{ word: 'SIMPLE', description: 'No modes. No config. Just works.' },
346-
{ word: 'FAST', description: '5–10× speed up via fast models and quick context gathering.' },
346+
{ word: 'FAST', description: '2–5x speed up via fast models and quick context gathering.' },
347347
{ word: 'LOADED', description: '9 specialized subagents: code review, browser use, deep thinking with your ChatGPT subscription, and more.' },
348348
]
349349

web/src/app/docs/[category]/[slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const FAQ_ITEMS = [
3333
{
3434
question: 'What model does Codebuff use?',
3535
answer:
36-
'Multiple. The orchestrator uses Claude Opus 4.6 in Default and Max modes, or Grok 4.1 Fast in Free mode. Subagents are matched to their tasks: Claude Opus 4.6 for code editing, GPT-5.1 for deep reasoning, Grok 4.1 Fast for terminal commands and research, and Relace AI for fast file rewrites.',
36+
'Multiple. The orchestrator uses Claude Opus 4.6 in Default and Max modes, or GLM 5.1 in Free mode. Subagents are matched to their tasks: Claude Opus 4.6 for code editing, GPT-5.1 for deep reasoning, Grok 4.1 Fast for terminal commands and research, and Relace AI for fast file rewrites.',
3737
},
3838
{
3939
question: 'Can I use my Claude Pro or Max subscription with Codebuff?',

web/src/content/advanced/how-does-it-work.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The main agent ("Buffy") runs on Claude Opus 4.6. It reads your prompt, gathers
2525
- [**Researcher**](/publishers/codebuff/agents/researcher) (Grok 4 Fast) - web and docs lookup
2626
- [**Thinker**](/publishers/codebuff/agents/thinker) (GPT-5.1, Gemini 2.5 Pro) - works through hard problems
2727
- [**Editor**](/publishers/codebuff/agents/editor) (GPT-5.1, Claude Opus 4.6) - writes and modifies code
28-
- [**Reviewer**](/publishers/codebuff/agents/reviewer) (Claude Opus 4.6, MiniMax M2.5 in Free mode) - catches bugs and style issues
28+
- [**Reviewer**](/publishers/codebuff/agents/reviewer) (Claude Opus 4.6, GLM 5.1 in Free mode) - catches bugs and style issues
2929
- [**Basher**](/publishers/codebuff/agents/basher) (Gemini 3.1 Flash Lite) - runs terminal commands
3030

3131
## Best-of-N Selection (Max Mode)

web/src/content/advanced/what-models.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The main agent ("Buffy") coordinates everything:
1919
| Default | Opus 4.6 |
2020
| Plan | Opus 4.6 |
2121
| Max | Opus 4.6 |
22-
| Free | MiniMax M2.5 |
22+
| Free | GLM 5.1 |
2323
</MarkdownTable>
2424

2525
## Subagents
@@ -29,12 +29,12 @@ The orchestrator spawns these for specific jobs:
2929
<MarkdownTable>
3030
| Task | Models |
3131
|------|--------|
32-
| Code editing | Claude Opus 4.6, Minimax M2.5 |
32+
| Code editing | Claude Opus 4.6, GLM 5.1 |
3333
| Thinking/reasoning | Claude Opus 4.6, GPT-5.4 |
3434
| Code review | Claude Opus 4.6, GPT-5.4 |
3535
| File discovery | Gemini 3.1 Flash Lite, Gemini 2.5 Flash Lite |
3636
| Terminal commands | Gemini 3.1 Flash Lite |
3737
| Web/docs research | Gemini 3.1 Flash Lite |
3838
</MarkdownTable>
3939

40-
Max mode runs multiple implementations in parallel and picks the best one. Default mode runs a single implementation pass. Free mode uses MiniMax M2.5 and includes code review support.
40+
Max mode runs multiple implementations in parallel and picks the best one. Default mode runs a single implementation pass. Free mode uses GLM 5.1 and includes code review support.

web/src/content/help/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Software development: Writing features, tests, and scripts across common languag
1313

1414
## What model does Codebuff use?
1515

16-
Multiple. The orchestrator uses Claude Opus 4.6 in Default and Max modes, or MiniMax M2.5 in Free mode. Subagents are matched to their tasks: Claude Opus 4.6 for code editing, GPT-5.1 for deep reasoning, Grok 4.1 Fast for terminal commands and research, and Relace AI for fast file rewrites. Free mode includes code review support. See [What models do you use?](/docs/advanced/what-models) for the full breakdown.
16+
Multiple. The orchestrator uses Claude Opus 4.6 in Default and Max modes, or GLM 5.1 in Free mode. Subagents are matched to their tasks: Claude Opus 4.6 for code editing, GPT-5.1 for deep reasoning, Grok 4.1 Fast for terminal commands and research, and Relace AI for fast file rewrites. Free mode includes code review support. See [What models do you use?](/docs/advanced/what-models) for the full breakdown.
1717

1818
## Can I use my Claude Pro or Max subscription with Codebuff?
1919

web/src/content/tips/modes.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Codebuff has four modes. Switch during a session with `Shift+Tab` or `/mode:` co
1515
| Default | Claude Opus 4.6 | editor | Yes |
1616
| Max | Claude Opus 4.6 | editor-multi-prompt | Yes |
1717
| Plan | Claude Opus 4.6 | None | No |
18-
| Free | MiniMax M2.5 | editor-lite | No |
18+
| Free | GLM 5.1 | None | No |
1919
</MarkdownTable>
2020

2121
## Default
@@ -60,7 +60,7 @@ Switch to this mode with `/mode:plan`.
6060

6161
## Free
6262

63-
MiniMax M2.5, cheaper and faster:
63+
GLM 5.1, cheaper and faster:
6464

6565
- Less file context gathering
6666
- Skips code review

0 commit comments

Comments
 (0)