Skip to content

Commit 184e904

Browse files
committed
Use base2 in experimental mode!
1 parent 8b6ce60 commit 184e904

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed
Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
1+
import { publisher } from '../constants'
12
import type { AgentDefinition } from '../types/agent-definition'
23

34
const definition: AgentDefinition = {
45
id: 'gpt5-thinker',
56
displayName: 'GPT-5 Quick Thinker',
7+
publisher,
68
model: 'openai/gpt-5',
79
reasoningOptions: {
810
enabled: true,
911
effort: 'low',
10-
exclude: false
12+
exclude: false,
1113
},
12-
14+
1315
inputSchema: {
14-
prompt: {
15-
type: 'string',
16-
description: 'The topic or question to think about deeply and thoroughly'
17-
}
16+
prompt: {
17+
type: 'string',
18+
description: 'The topic or question to think about deeply and thoroughly',
19+
},
1820
},
19-
21+
2022
includeMessageHistory: true,
21-
23+
2224
outputMode: 'last_message',
23-
24-
spawnerPrompt: 'Spawn this agent when you need quick thinking on a topic using GPT-5 with focused reasoning effort.',
25-
2625

27-
instructionsPrompt: 'You are a deep thinker using GPT-5 with focused reasoning. Think hard about the given prompt and provide insightful analysis. Dive deep into the topic, explore multiple angles, and generate meaningful insights. Your goal is to offer a perspective that contributes valuable depth to the overall analysis.'
26+
spawnerPrompt:
27+
'Spawn this agent when you need quick thinking on a topic using GPT-5 with focused reasoning effort.',
28+
29+
instructionsPrompt:
30+
'You are a deep thinker using GPT-5 with focused reasoning. Think hard about the given prompt and provide insightful analysis. Dive deep into the topic, explore multiple angles, and generate meaningful insights. Your goal is to offer a perspective that contributes valuable depth to the overall analysis.',
2831
}
29-
export default definition
32+
export default definition

backend/src/main-prompt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export const mainPrompt = async (
164164
lite: AgentTemplateTypes.base_lite,
165165
normal: AgentTemplateTypes.base,
166166
max: AgentTemplateTypes.base_max,
167-
experimental: AgentTemplateTypes.base_experimental,
167+
experimental: 'base2',
168168
} satisfies Record<CostMode, AgentTemplateType>
169169
)[costMode]
170170
}

0 commit comments

Comments
 (0)