Skip to content

Commit f79e1e0

Browse files
committed
fix(cua): switch anthropic computer-use defaults to claude-sonnet-4-6
Update both TypeScript and Python anthropic computer-use templates to default to the non-dated claude-sonnet-4-6 model alias so new apps use the current recommended model line. Made-with: Cursor
1 parent 5b12089 commit f79e1e0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • pkg/templates
    • python/anthropic-computer-use
    • typescript/anthropic-computer-use

pkg/templates/python/anthropic-computer-use/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async def cua_task(
5555
print("Kernel browser live view url:", session.live_view_url)
5656

5757
final_messages = await sampling_loop(
58-
model="claude-sonnet-4-5-20250929",
58+
model="claude-sonnet-4-6",
5959
messages=[
6060
{
6161
"role": "user",

pkg/templates/typescript/anthropic-computer-use/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ app.action<QueryInput, QueryOutput>(
4444
try {
4545
// Run the sampling loop
4646
const finalMessages = await samplingLoop({
47-
model: 'claude-sonnet-4-5-20250929',
47+
model: 'claude-sonnet-4-6',
4848
messages: [{
4949
role: 'user',
5050
content: payload.query,

0 commit comments

Comments
 (0)