Skip to content

Commit d82845f

Browse files
fx
1 parent ae94eab commit d82845f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/openclaw/config.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ describe('generateOpenClawConfig', () => {
7070

7171
it('sets default model to vercel-ai-gateway provider', () => {
7272
const config = generateOpenClawConfig(makeInstance(), makeOrg(), defaultParams)
73-
expect(config.agents.defaults.model.primary).toBe('vercel-ai-gateway/anthropic/claude-sonnet-4-5')
73+
expect(config.agents.defaults.model.primary).toBe('vercel-ai-gateway/anthropic/claude-sonnet-4.5')
7474
})
7575

7676
it('does not include models.providers (uses built-in vercel-ai-gateway)', () => {

src/lib/openclaw/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export interface OpenClawConfig {
1818
}
1919
}
2020

21-
const DEFAULT_MODEL = 'vercel-ai-gateway/anthropic/claude-sonnet-4-5'
21+
const DEFAULT_MODEL = 'vercel-ai-gateway/anthropic/claude-sonnet-4.5'
2222

2323
interface ConfigParams {
2424
gatewayToken: string

0 commit comments

Comments
 (0)