Skip to content

Commit 84f5377

Browse files
committed
Fixes
1 parent e7233bb commit 84f5377

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/sim/app/api/mothership/chats/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export const POST = withRouteHandler(async (request: NextRequest) => {
9898
workspaceId,
9999
type: 'mothership',
100100
title: null,
101-
model: 'claude-opus-4-6',
101+
model: 'claude-opus-4-8',
102102
messages: [],
103103
updatedAt: now,
104104
lastSeenAt: now,

apps/sim/app/api/v1/copilot/chat/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { authenticateRequest } from '@/app/api/v1/middleware'
1212
export const maxDuration = 3600
1313

1414
const logger = createLogger('CopilotHeadlessAPI')
15-
const DEFAULT_COPILOT_MODEL = 'claude-opus-4-6'
15+
const DEFAULT_COPILOT_MODEL = 'claude-opus-4-8'
1616

1717
/**
1818
* POST /api/v1/copilot/chat

apps/sim/lib/mothership/inbox/executor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export async function executeInboxTask(taskId: string): Promise<void> {
9696
const chatResult = await resolveOrCreateChat({
9797
userId,
9898
workspaceId: ws.id,
99-
model: 'claude-opus-4-6',
99+
model: 'claude-opus-4-8',
100100
type: 'mothership',
101101
})
102102
chatId = chatResult.chatId
@@ -110,7 +110,7 @@ export async function executeInboxTask(taskId: string): Promise<void> {
110110

111111
requestChatTitle({
112112
message: titleInput,
113-
model: 'claude-opus-4-6',
113+
model: 'claude-opus-4-8',
114114
userId,
115115
})
116116
.then(async (title) => {

0 commit comments

Comments
 (0)