Skip to content

Commit e812389

Browse files
committed
Remove ':free' from x-ai/grok-4-fast:free
1 parent d59cb81 commit e812389

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

.agents/agent-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const definition: AgentDefinition = {
114114
'1. **Use as few fields as possible**: Leave out fields that are not needed to reduce complexity',
115115
'2. **Minimal Tools**: Only include tools the agent actually needs',
116116
'3. **Clear and Concise Prompts**: Write clear, specific prompts that have no unnecessary words. Usually a few sentences or bullet points is enough.',
117-
'5. **Appropriate Model**: Choose the right model for the task complexity. Default is anthropic/claude-sonnet-4 for medium-high complexity tasks, x-ai/grok-4-fast:free for low complexity tasks, openai/gpt-5 for reasoning tasks, especially for very complex tasks that need more time to come up with the best solution.',
117+
'5. **Appropriate Model**: Choose the right model for the task complexity. Default is anthropic/claude-sonnet-4 for medium-high complexity tasks, x-ai/grok-4-fast for low complexity tasks, openai/gpt-5 for reasoning tasks, especially for very complex tasks that need more time to come up with the best solution.',
118118
'6. **Editing files**: If the agent should be able to edit files, include the str_replace tool and the write_file tool.',
119119
'7. **Input and output schema**: For almost all agents, just make the input schema a string prompt, and use last_message for the output mode. Agents that modify files mainly interact by their changes to files, not through the output schema. Some subagents may want to use the output schema, which the parent agent can use specifically.',
120120
'',

.agents/base-lite-grok-4-fast.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const definition: SecretAgentDefinition = {
1212
id: 'base-lite-grok-4-fast',
1313
displayName: 'Base Lite Grok 4 Fast',
1414
publisher,
15-
model: 'x-ai/grok-4-fast:free',
15+
model: 'x-ai/grok-4-fast',
1616
spawnableAgents: ['researcher-grok-4-fast', 'thinker', 'reviewer-lite', 'context-pruner'],
1717
instructionsPrompt:
1818
PLACEHOLDER.KNOWLEDGE_FILES_CONTENTS +

.agents/planners/decomposing-planner-lite.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const definition: SecretAgentDefinition = {
88
model: 'anthropic/claude-sonnet-4.5',
99
spawnerPrompt:
1010
'Creates a better implementation plan by decomposing the task into smaller plans in parallel and synthesizing them into a final plan. Includes full code changes.',
11-
spawnableAgents: ['file-explorer', 'implementation-planner-lite'],
11+
spawnableAgents: ['researcher-file-explorer', 'implementation-planner-lite'],
1212
includeMessageHistory: false,
1313
}
1414

.agents/researcher/researcher-codebase-explorer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { publisher } from '../constants'
44
const definition: SecretAgentDefinition = {
55
id: 'researcher-codebase-explorer',
66
publisher,
7-
model: 'x-ai/grok-4-fast:free',
7+
model: 'x-ai/grok-4-fast',
88
displayName: 'Codebase Explorer',
99
spawnerPrompt: `Expert at exploring the codebase to find relevant information using terminal commands.`,
1010
inputSchema: {

.agents/researcher/researcher-docs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { publisher } from '../constants'
44
const definition: SecretAgentDefinition = {
55
id: 'researcher-docs',
66
publisher,
7-
model: 'x-ai/grok-4-fast:free',
7+
model: 'x-ai/grok-4-fast',
88
displayName: 'Doc',
99
spawnerPrompt: `Expert at reading technical documentation of major public libraries and frameworks to find relevant information. (e.g. React, MongoDB, Postgres, etc.)`,
1010
inputSchema: {
@@ -27,4 +27,4 @@ const definition: SecretAgentDefinition = {
2727
`.trim(),
2828
}
2929

30-
export default definition
30+
export default definition

.agents/researcher/researcher-file-explorer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const fileExplorer: SecretAgentDefinition = {
1919
displayName: 'Dora the File Explorer',
2020
spawnerPrompt:
2121
'Comprehensively explores the codebase and reports back on the results',
22-
model: 'x-ai/grok-4-fast:free',
22+
model: 'x-ai/grok-4-fast',
2323
publisher,
2424
outputMode: 'structured_output',
2525
includeMessageHistory: false,

.agents/researcher/researcher-file-picker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { filePicker } from 'factory/file-picker'
33
import { SecretAgentDefinition } from 'types/secret-agent-definition'
44

55
const definition: SecretAgentDefinition = {
6-
...filePicker('x-ai/grok-4-fast:free'),
6+
...filePicker('x-ai/grok-4-fast'),
77
id: 'researcher-file-picker',
88
publisher,
99
}
1010

11-
export default definition
11+
export default definition

.agents/researcher/researcher-grok-4-fast.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { publisher } from '../constants'
77
const definition: SecretAgentDefinition = {
88
id: 'researcher-grok-4-fast',
99
publisher,
10-
model: 'x-ai/grok-4-fast:free',
10+
model: 'x-ai/grok-4-fast',
1111
displayName: 'Grok 4 Fast Researcher',
1212
toolNames: ['spawn_agents'],
1313
spawnableAgents: [

.agents/researcher/researcher-web.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { publisher } from '../constants'
44
const definition: SecretAgentDefinition = {
55
id: 'researcher-web',
66
publisher,
7-
model: 'x-ai/grok-4-fast:free',
7+
model: 'x-ai/grok-4-fast',
88
displayName: 'Weeb',
99
spawnerPrompt: `Expert at browsing the web to find relevant information.`,
1010
inputSchema: {

.agents/types/agent-definition.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ export type ModelName =
301301

302302
// X-AI
303303
| 'x-ai/grok-4-07-09'
304-
| 'x-ai/grok-4-fast:free'
304+
| 'x-ai/grok-4-fast'
305305
| 'x-ai/grok-code-fast-1'
306306

307307
// Qwen

0 commit comments

Comments
 (0)