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
10 changes: 8 additions & 2 deletions clients/macos/vellum-assistant/App/AppDelegate+Sessions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ extension AppDelegate {
maxSteps: maxSteps,
sessionId: routed.sessionId,
skipSessionCreate: true,
notificationService: self.services.activityNotificationService
notificationService: self.services.activityNotificationService,
screenRecorder: (routed.qaMode == true) ? ScreenRecorder() : nil,
reportToSessionId: routed.reportToSessionId,
qaMode: routed.qaMode ?? false
)
// Don't bind relatedViewModel for escalated sessions — the active view model
// may be unrelated if the user switched threads. Tool calls for escalated
Expand Down Expand Up @@ -193,7 +196,10 @@ extension AppDelegate {
attachments: submission.attachments,
sessionId: routed.sessionId,
skipSessionCreate: true,
notificationService: self.services.activityNotificationService
notificationService: self.services.activityNotificationService,
screenRecorder: (routed.qaMode == true) ? ScreenRecorder() : nil,
reportToSessionId: routed.reportToSessionId,
qaMode: routed.qaMode ?? false
)
// Don't bind relatedViewModel — sessions started via startSession() don't
// originate from a chat thread, so there's no ChatViewModel to extract
Expand Down