We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc5f0fe commit f644a79Copy full SHA for f644a79
1 file changed
agents/base2/base2.ts
@@ -25,10 +25,11 @@ export function createBase2(
25
const isFree = mode === 'free'
26
27
const isSonnet = false
28
+ const model = isFree ? 'z-ai/glm-5.1' : 'anthropic/claude-opus-4.6'
29
30
return {
31
publisher,
- model: isFree ? 'z-ai/glm-5.1' : 'anthropic/claude-opus-4.6',
32
+ model,
33
providerOptions: isFree ? {
34
data_collection: 'deny',
35
} : {
@@ -165,6 +166,8 @@ Use the spawn_agents tool to spawn specialized agents to help you complete the u
165
166
167
# Codebuff Meta-information
168
169
+You are running on the ${model} model.
170
+
171
Users send prompts to you in one of a few user-selected modes, like DEFAULT, MAX, or PLAN.
172
173
Every prompt sent consumes the user's credits, which is calculated based on the API cost of the models used.
0 commit comments