Skip to content

Commit ec9620c

Browse files
committed
Change Scout to gpt-5 chat (and planner orchestrator)
1 parent b7b6f06 commit ec9620c

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.agents/base2/planner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { plannerFactory } from './planner-factory'
33

44
const definition: SecretAgentDefinition = {
55
id: 'planner',
6-
...plannerFactory('google/gemini-2.5-pro'),
6+
...plannerFactory('openai/gpt-5-chat'),
77
}
88

99
export default definition

.agents/base2/scout.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ import { publisher } from '../constants'
77
const definition: SecretAgentDefinition = {
88
id: 'scout',
99
publisher,
10-
model: 'google/gemini-2.5-flash',
11-
reasoningOptions: {
12-
effort: 'low',
13-
exclude: true,
14-
},
10+
model: 'openai/gpt-5-chat',
1511
displayName: 'Lewis & Clark',
1612
spawnableAgents: ['file-explorer', 'web-researcher', 'docs-researcher'],
1713
toolNames: ['spawn_agents', 'end_turn'],

common/src/templates/initial-agents-dir/types/agent-definition.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ export type ModelName =
323323

324324
// OpenAI
325325
| 'openai/gpt-5'
326+
| 'openai/gpt-5-chat'
326327
| 'openai/gpt-5-mini'
327328
| 'openai/gpt-5-nano'
328329

0 commit comments

Comments
 (0)