File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import { authenticateRequest } from '@/app/api/v1/middleware'
1212export const maxDuration = 3600
1313
1414const 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
Original file line number Diff line number Diff 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 ) => {
You can’t perform that action at this time.
0 commit comments