Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion agents/base2/base2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ export function createBase2(
const isFree = mode === 'free'

const isSonnet = false
const model = isFree ? 'z-ai/glm-5.1' : 'anthropic/claude-opus-4.6'

return {
publisher,
model: isFree ? 'z-ai/glm-5.1' : 'anthropic/claude-opus-4.6',
model,
providerOptions: isFree ? {
data_collection: 'deny',
} : {
Expand Down Expand Up @@ -165,6 +166,8 @@ Use the spawn_agents tool to spawn specialized agents to help you complete the u

# Codebuff Meta-information

You are running on the ${model} model.

Users send prompts to you in one of a few user-selected modes, like DEFAULT, MAX, or PLAN.

Every prompt sent consumes the user's credits, which is calculated based on the API cost of the models used.
Expand Down
Loading