File size: 47,861 Bytes
7b2dfc5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 | import Foundation
import Observation
enum AssistantSessionError: LocalizedError, Sendable {
case persistenceUnavailable
case sessionUnavailable
case memoryLimitReached
case knowledgeLimitReached
case handoffLimitReached
case handoffNotFound
case handoffNotActive
case taskLimitReached
case taskNotFound
case taskAlreadyOpen
case unreceiptableToolResult
var errorDescription: String? {
switch self {
case .persistenceUnavailable:
"Local assistant storage is unavailable."
case .sessionUnavailable:
"The assistant session is no longer available."
case .memoryLimitReached:
"The local memory limit has been reached. Delete an item before saving another."
case .knowledgeLimitReached:
"The local knowledge limit has been reached. Delete an item before capturing another."
case .handoffLimitReached:
"The local handoff limit has been reached. Delete a handoff before creating another."
case .handoffNotFound:
"The requested session handoff no longer exists."
case .handoffNotActive:
"The requested session handoff is not the active checkpoint."
case .taskLimitReached:
"The local task limit has been reached. Delete a task before adding another."
case .taskNotFound:
"The requested task no longer exists."
case .taskAlreadyOpen:
"The requested task is already open."
case .unreceiptableToolResult:
"The local action result could not be recorded safely."
}
}
}
@MainActor
@Observable
final class AssistantSession {
var workspace: AssistantWorkspace = .empty
var draft = ""
private(set) var isWorkspaceReady = false
private(set) var isRunning = false
private(set) var isModelLoaded = false
private(set) var isModelLoading = false
private(set) var modelStatus = "Loading local data…"
private(set) var pendingApproval: ToolApprovalRequest?
private(set) var errorMessage: String?
private(set) var calendarAuthorization: SystemCalendarAuthorization = .notDetermined
private(set) var isCalendarAccessRequesting = false
private(set) var resourceSnapshot: AssistantResourceSnapshot?
private(set) var resourceWarning: String?
@ObservationIgnored private let calendarReader: EventKitCalendarReader
@ObservationIgnored private let toolRegistry: AgentToolRegistry
@ObservationIgnored private let resourceProvider = SystemResourceSnapshotProvider()
@ObservationIgnored private var persistence: AssistantPersistence?
@ObservationIgnored private var runtime: DolphinModelRuntime?
@ObservationIgnored private var agentLoop: AgentLoop?
@ObservationIgnored private var loadWorkspaceTask: Task<Void, Never>?
@ObservationIgnored private var loadModelTask: Task<Void, Never>?
@ObservationIgnored private var runTask: Task<Void, Never>?
@ObservationIgnored private var runTimeoutTask: Task<Void, Never>?
@ObservationIgnored private var persistenceTask: Task<Void, Never>?
@ObservationIgnored private var approvalExpiryTask: Task<Void, Never>?
@ObservationIgnored private var approvalContinuation:
CheckedContinuation<Bool, Never>?
@ObservationIgnored private var activeRunID: UUID?
@ObservationIgnored private var applicationIsActive = false
var canSubmitDraft: Bool {
guard
isWorkspaceReady,
!isRunning,
!isModelLoading,
!submittedDraftText.isEmpty
else { return false }
return isModelLoaded
|| AgentRequestRouter.plan(for: submittedDraftText).mode == .deterministic
}
private var submittedDraftText: String {
String(
draft.trimmingCharacters(in: .whitespacesAndNewlines).prefix(8_000)
)
}
private var idleModelStatus: String {
guard isWorkspaceReady else { return "Local storage unavailable" }
return isModelLoaded ? "Model ready" : "Model not loaded"
}
init() {
let calendarReader = EventKitCalendarReader()
self.calendarReader = calendarReader
toolRegistry = AgentToolRegistry(calendarReader: calendarReader)
do {
let persistence = try AssistantPersistence()
self.persistence = persistence
loadWorkspaceTask = Task { [weak self, persistence] in
do {
let savedWorkspace = try await persistence.load()
try Task.checkCancellation()
guard let self else { return }
let recoveredWorkspace = self.sanitized(savedWorkspace)
let recoveredInterruptedRuns = recoveredWorkspace != savedWorkspace
self.workspace = recoveredWorkspace
self.isWorkspaceReady = true
self.modelStatus = "Model not loaded"
Task { await self.refreshCalendarAuthorization() }
if recoveredInterruptedRuns {
self.persistSoon()
}
} catch is CancellationError {
return
} catch {
guard let self else { return }
// Preserve the unreadable file and fail closed. Apparently durable
// chat or settings must never proceed against an unavailable store.
self.persistence = nil
self.isWorkspaceReady = false
self.modelStatus = "Local storage unavailable"
self.errorMessage =
"Saved data could not be read and was left untouched: \(error.localizedDescription)"
}
self?.loadWorkspaceTask = nil
}
} catch {
persistence = nil
isWorkspaceReady = false
modelStatus = "Local storage unavailable"
errorMessage = error.localizedDescription
}
}
func loadModel() {
guard
isWorkspaceReady,
!isModelLoaded,
!isModelLoading,
loadModelTask == nil
else {
return
}
errorMessage = nil
refreshResourceSnapshot()
if let resourceSnapshot {
switch ResourceBudgetPolicy.modelLoadDecision(for: resourceSnapshot) {
case .allow:
resourceWarning = nil
case .warn(let warning):
resourceWarning = warning
recordStandalone(
kind: .model,
status: .information,
title: "Resource advisory",
detail: warning
)
case .deny(let reason):
resourceWarning = nil
modelStatus = "Model load paused"
errorMessage = reason
recordStandalone(
kind: .model,
status: .failed,
title: "Model load blocked",
detail: reason
)
return
}
}
isModelLoading = true
modelStatus = "Loading 1.81 GB model…"
recordStandalone(
kind: .model,
status: .running,
title: "Loading model",
detail: DolphinModelRuntime.modelIdentifier
)
loadModelTask = Task { [weak self] in
defer {
self?.isModelLoading = false
self?.loadModelTask = nil
}
do {
let runtime = try await DolphinModelRuntime()
let information = await runtime.information()
try Task.checkCancellation()
guard let self else { return }
guard self.isWorkspaceReady, self.persistence != nil else {
self.modelStatus = "Local storage unavailable"
return
}
self.runtime = runtime
self.agentLoop = AgentLoop(runtime: runtime)
self.isModelLoaded = true
self.modelStatus = "Model ready"
self.recordStandalone(
kind: .model,
status: .succeeded,
title: "Model ready",
detail:
"Loaded in \(Self.format(information.loadSeconds)) s · \(information.maxContextLength)-token state · \(information.maxQueryLength)-token chunks"
)
} catch is CancellationError {
guard let self else { return }
self.modelStatus = self.isWorkspaceReady
? "Model load cancelled"
: "Local storage unavailable"
self.recordStandalone(
kind: .model,
status: .cancelled,
title: "Model load cancelled",
detail: ""
)
} catch {
guard let self else { return }
self.modelStatus = "Model load failed"
self.errorMessage = error.localizedDescription
self.recordStandalone(
kind: .model,
status: .failed,
title: "Model load failed",
detail: error.localizedDescription
)
}
}
}
func cancelModelLoad() {
guard isModelLoading, let loadModelTask else { return }
modelStatus = "Cancelling model load…"
loadModelTask.cancel()
}
func releaseModel() {
guard !isRunning, !isModelLoading else { return }
agentLoop = nil
runtime = nil
isModelLoaded = false
modelStatus = "Model not loaded"
recordStandalone(
kind: .model,
status: .information,
title: "Model released",
detail: "Core ML model memory can now be reclaimed by iOS."
)
}
func send() {
let message = submittedDraftText
guard
!message.isEmpty,
isWorkspaceReady,
!isRunning,
!isModelLoading,
let persistence
else { return }
let requestPlan = AgentRequestRouter.plan(for: message)
let selectedAgentLoop: AgentLoop
let usesLoadedModel: Bool
if isModelLoaded, let agentLoop {
selectedAgentLoop = agentLoop
usesLoadedModel = true
} else if requestPlan.mode == .deterministic {
selectedAgentLoop = AgentLoop(runtime: ToolOnlyDolphinRuntime())
usesLoadedModel = false
} else {
return
}
errorMessage = nil
draft = ""
let settings = sanitized(workspace.settings)
workspace.settings = settings
let userMessage = AssistantMessage(
role: .user,
content: message
)
workspace.messages.append(userMessage)
trimWorkspaceHistory()
let runID = UUID()
let conversation = workspace.messages
workspace.runs.append(
AgentRunRecord(
id: runID,
requestMessageID: userMessage.id,
requestText: userMessage.content,
contextMessageIDs: conversation.map(\.id),
settingsSnapshot: settings
)
)
trimRunHistory()
activeRunID = runID
isRunning = true
modelStatus = usesLoadedModel ? "Thinking…" : "Running verified plan…"
let activeHandoff = workspace.activeHandoffID.flatMap { activeID in
workspace.handoffs.first { $0.id == activeID }
}
var memoryContext = KnowledgeEngine().promptContext(
knowledge: workspace.knowledgeItems,
query: userMessage.content,
limit: 4
)
if let activeHandoff {
memoryContext.insert(
MemoryItem(
id: activeHandoff.id,
content: "[active handoff] \(activeHandoff.title): \(activeHandoff.summary)",
createdAt: activeHandoff.restoredAt ?? activeHandoff.createdAt
),
at: 0
)
}
if memoryContext.count < 5 {
let existingIDs = Set(memoryContext.map(\.id))
memoryContext.append(
contentsOf: workspace.memories.reversed().filter {
!existingIDs.contains($0.id)
}.prefix(5 - memoryContext.count)
)
}
let registry = toolRegistry
let context = toolExecutionContext(runID: runID)
runTimeoutTask?.cancel()
runTimeoutTask = Task { [weak self] in
do {
try await Task.sleep(for: .seconds(settings.maxRunSeconds))
} catch {
return
}
guard let self, self.activeRunID == runID else { return }
self.markCancellationRequested(runID: runID, reason: .deadline)
self.modelStatus = "Stopping at the run deadline…"
self.resolveApproval(approved: false)
self.runTask?.cancel()
}
runTask = Task {
[weak self, selectedAgentLoop, registry, context, persistence] in
guard let self else { return }
do {
try await self.persistImmediately(using: persistence)
try Task.checkCancellation()
} catch is CancellationError {
// Continue into the normal cancellation path so the persisted run is
// terminalized only after cancellation is actually observed.
} catch {
self.markRunTerminal(
runID: runID,
status: .failed,
stopReason: .storageFailure,
finalMessageID: nil,
errorSummary: error.localizedDescription
)
self.markPersistenceUnavailable(error)
self.finishRunState(runID: runID)
return
}
let callbacks = AgentLoopCallbacks(
normalizeTool: { call in
try registry.normalize(call)
},
executeTool: { call in
await registry.execute(call, context: context)
},
requestApproval: { [weak self] request in
guard let self else { return false }
return await self.waitForApproval(request)
},
emit: { [weak self] event in
self?.record(event)
},
modelProgress: { [weak self] progress in
self?.modelStatus = "Thinking · \(progress.generatedTokens) tokens"
},
checkpoint: { [weak self] update in
guard let self else {
throw AssistantSessionError.sessionUnavailable
}
try await self.applyCheckpoint(update, runID: runID)
}
)
do {
let result = try await selectedAgentLoop.run(
runID: runID,
conversation: conversation,
memoryContext: memoryContext,
settings: settings,
toolDefinitions: registry.definitions,
callbacks: callbacks
)
try Task.checkCancellation()
guard self.activeRunID == runID else { return }
let finalMessage = AssistantMessage(
role: .assistant,
content: result.finalText
)
self.workspace.messages.append(finalMessage)
self.trimWorkspaceHistory()
self.markRunTerminal(
runID: runID,
status: result.outcome == .succeeded ? .succeeded : .failed,
stopReason: nil,
finalMessageID: finalMessage.id,
errorSummary: result.outcome == .failed
? "The run stopped without completing every requested action."
: nil,
toolCallsUsed: result.toolCalls,
modelTurns: result.modelTurns
)
self.modelStatus = self.idleModelStatus
do {
try await self.persistImmediately(using: persistence)
} catch {
self.markTerminalPersistenceFailure(runID: runID, error: error)
self.markPersistenceUnavailable(error)
}
} catch is CancellationError {
await self.terminalizeStoppedRun(
runID: runID,
reason: self.runStopReason(runID: runID),
persistence: persistence
)
} catch let error as AgentLoopError where error == .timeLimitReached {
await self.terminalizeStoppedRun(
runID: runID,
reason: .deadline,
persistence: persistence
)
} catch {
guard self.activeRunID == runID else { return }
self.errorMessage = error.localizedDescription
let finalMessage = AssistantMessage(
role: .assistant,
content:
"I couldn’t finish this run safely. \(error.localizedDescription)"
+ self.terminalReceiptAppendix(for: runID)
)
self.workspace.messages.append(finalMessage)
self.record(
AgentEvent(
runID: runID,
sequence: self.nextSequence(for: runID),
kind: .run,
status: .failed,
title: "Run failed",
detail: error.localizedDescription
)
)
self.markRunTerminal(
runID: runID,
status: .failed,
stopReason: self.runStopReason(runID: runID),
finalMessageID: finalMessage.id,
errorSummary: error.localizedDescription
)
self.modelStatus = self.idleModelStatus
do {
try await self.persistImmediately(using: persistence)
} catch {
self.markTerminalPersistenceFailure(runID: runID, error: error)
self.markPersistenceUnavailable(error)
}
}
self.finishRunState(runID: runID)
}
}
func stop() {
guard isRunning else { return }
if let activeRunID {
markCancellationRequested(runID: activeRunID, reason: .user)
}
modelStatus = "Stopping after the current operation…"
runTimeoutTask?.cancel()
runTimeoutTask = nil
resolveApproval(approved: false)
runTask?.cancel()
}
func enteredBackground() {
applicationIsActive = false
guard isRunning else { return }
if let activeRunID {
markCancellationRequested(runID: activeRunID, reason: .background)
}
modelStatus = "Stopping because Dolphin left the foreground…"
runTimeoutTask?.cancel()
runTimeoutTask = nil
resolveApproval(approved: false)
runTask?.cancel()
}
func enteredForeground() {
applicationIsActive = true
refreshResourceSnapshot()
Task { await refreshCalendarAuthorization() }
}
func refreshResourceSnapshot() {
let snapshot = resourceProvider.snapshot()
resourceSnapshot = snapshot
switch ResourceBudgetPolicy.modelLoadDecision(for: snapshot) {
case .allow:
resourceWarning = nil
case .warn(let warning), .deny(let warning):
resourceWarning = warning
}
}
func refreshCalendarAuthorization() async {
calendarAuthorization = await calendarReader.authorizationStatus()
}
/// This is the sole permission-prompt path. A model/tool call cannot reach
/// it; the user must tap the Calendar control in Settings while foregrounded.
@discardableResult
func requestAndEnableCalendarAccess() async -> Bool {
guard
isWorkspaceReady,
!isRunning,
applicationIsActive,
!isCalendarAccessRequesting
else { return false }
isCalendarAccessRequesting = true
errorMessage = nil
defer { isCalendarAccessRequesting = false }
do {
let authorization = try await calendarReader.requestFullAccess()
calendarAuthorization = authorization
guard authorization == .fullAccess else {
errorMessage = SystemCalendarReaderError
.fullAccessRequired(authorization)
.localizedDescription
return false
}
guard applicationIsActive else {
errorMessage =
"Calendar access was granted by iOS, but Dolphin stayed disabled because the app left the foreground. Return to Settings and tap Enable Calendar Context."
return false
}
workspace.settings.enabledSystemCapabilities.insert(.calendarRead)
persistSoon()
recordStandalone(
kind: .persistence,
status: .information,
title: "Calendar context enabled",
detail: "Dolphin may request bounded event-title and time reads. Every read still requires one-time approval."
)
return true
} catch {
calendarAuthorization = await calendarReader.authorizationStatus()
errorMessage = "Calendar access was not enabled: \(error.localizedDescription)"
return false
}
}
@discardableResult
func enableCalendarContext() -> Bool {
guard
isWorkspaceReady,
!isRunning,
applicationIsActive,
calendarAuthorization == .fullAccess
else { return false }
workspace.settings.enabledSystemCapabilities.insert(.calendarRead)
persistSoon()
recordStandalone(
kind: .persistence,
status: .information,
title: "Calendar context enabled",
detail: "Calendar reads remain bounded and require approval once per exact request."
)
return true
}
func disableCalendarContext() {
guard isWorkspaceReady, !isRunning else { return }
guard workspace.settings.enabledSystemCapabilities.remove(.calendarRead) != nil else {
return
}
persistSoon()
recordStandalone(
kind: .persistence,
status: .information,
title: "Calendar context disabled",
detail: "Dolphin will deny Calendar tool requests. You can separately revoke OS access in iOS Settings."
)
}
func approvePending() {
guard let request = pendingApproval else { return }
resolveApproval(approved: !request.isExpired(), matching: request.id)
}
func denyPending() {
guard let request = pendingApproval else { return }
resolveApproval(approved: false, matching: request.id)
}
func clearConversation() {
guard isWorkspaceReady, !isRunning else { return }
workspace.messages.removeAll()
workspace.runs.removeAll()
workspace.events.removeAll { $0.runID != nil }
scrubConversationCopiesFromHandoffs()
persistSoon()
}
func deleteMemory(id: UUID) {
guard isWorkspaceReady, !isRunning else { return }
guard let memory = workspace.memories.first(where: { $0.id == id }) else {
return
}
workspace.memories.removeAll { $0.id == id }
let canonicalMirror = KnowledgeEngine.canonicalCaptureFields(
title: "Saved memory",
content: memory.content,
tags: ["memory"],
relatedItemIDs: []
)
let mirrorIDs = Set(workspace.knowledgeItems.compactMap { item -> UUID? in
guard
item.id == memory.id
|| (
item.title == canonicalMirror.title
&& item.content == canonicalMirror.content
&& item.tags == canonicalMirror.tags
&& item.createdAt == memory.createdAt
)
else { return nil }
return item.id
})
removeKnowledgeAndDerivedState(ids: mirrorIDs)
persistSoon()
}
@discardableResult
func captureKnowledge(
kind: KnowledgeKind,
title: String,
content: String,
tags: [String] = []
) -> Bool {
guard
isWorkspaceReady,
!isRunning,
workspace.knowledgeItems.count < KnowledgeEngine.Limits.maxCorpusItems
else { return false }
let item = KnowledgeItem(
kind: kind,
title: title,
content: content,
tags: tags,
source: .user
)
workspace.knowledgeItems.append(item)
appendAutomaticKnowledgeDigestIfNeeded(trigger: "manual capture")
persistSoon()
recordStandalone(
kind: .persistence,
status: .succeeded,
title: "Knowledge captured",
detail: "\(item.kind.rawValue): \(item.title) · revision \(item.revision)"
)
return true
}
func deleteKnowledge(id: UUID) {
guard isWorkspaceReady, !isRunning else { return }
guard workspace.knowledgeItems.contains(where: { $0.id == id }) else {
return
}
workspace.memories.removeAll { $0.id == id }
removeKnowledgeAndDerivedState(ids: [id])
persistSoon()
recordStandalone(
kind: .persistence,
status: .information,
title: "Knowledge deleted",
detail: id.uuidString
)
}
@discardableResult
func createHandoff(title: String, focus: String) -> Bool {
guard isWorkspaceReady, !isRunning else { return false }
let handoff = KnowledgeEngine().makeHandoff(
title: title,
focus: focus,
knowledge: workspace.knowledgeItems,
tasks: workspace.tasks,
recentMessages: workspace.messages.suffix(6).map(\.content)
)
if let index = workspace.handoffs.firstIndex(where: { $0.id == handoff.id }) {
workspace.handoffs[index] = handoff
} else {
guard workspace.handoffs.count < 100 else { return false }
workspace.handoffs.append(handoff)
}
workspace.activeHandoffID = handoff.id
persistSoon()
recordStandalone(
kind: .persistence,
status: .succeeded,
title: "Session handoff created",
detail: "\(handoff.title) [\(handoff.id.uuidString)]"
)
return true
}
@discardableResult
func restoreHandoff(id: UUID) -> Bool {
guard
isWorkspaceReady,
!isRunning,
let index = workspace.handoffs.firstIndex(where: { $0.id == id })
else { return false }
workspace.handoffs[index].restoredAt = Date()
workspace.activeHandoffID = id
persistSoon()
recordStandalone(
kind: .persistence,
status: .succeeded,
title: "Session handoff restored",
detail: "\(workspace.handoffs[index].title) [\(id.uuidString)]. No prior action was replayed."
)
return true
}
func deleteHandoff(id: UUID) {
guard isWorkspaceReady, !isRunning else { return }
let previousCount = workspace.handoffs.count
workspace.handoffs.removeAll { $0.id == id }
guard workspace.handoffs.count != previousCount else { return }
if workspace.activeHandoffID == id { workspace.activeHandoffID = nil }
// Digests can contain the handoff focus but schema-v5 digests do not carry
// a source-handoff ID, so conservatively remove derived snapshots.
workspace.knowledgeDigests.removeAll()
persistSoon()
recordStandalone(
kind: .persistence,
status: .information,
title: "Session handoff deleted",
detail: id.uuidString
)
}
func deleteTask(id: UUID) {
guard isWorkspaceReady, !isRunning else { return }
guard workspace.tasks.contains(where: { $0.id == id }) else { return }
workspace.tasks.removeAll { $0.id == id }
let removedHandoffIDs = Set(
workspace.handoffs.filter { $0.taskIDs.contains(id) }.map(\.id)
)
workspace.handoffs.removeAll { removedHandoffIDs.contains($0.id) }
if let activeID = workspace.activeHandoffID,
removedHandoffIDs.contains(activeID)
{
workspace.activeHandoffID = nil
}
// Digests can copy task titles but do not yet carry task evidence IDs.
workspace.knowledgeDigests.removeAll()
persistSoon()
}
@discardableResult
func deactivateHandoff() -> Bool {
guard
isWorkspaceReady,
!isRunning,
let activeID = workspace.activeHandoffID
else { return false }
workspace.activeHandoffID = nil
persistSoon()
recordStandalone(
kind: .persistence,
status: .information,
title: "Session handoff deactivated",
detail: "\(activeID.uuidString). The checkpoint remains saved."
)
return true
}
@discardableResult
func setTaskCompletion(id: UUID, isCompleted: Bool) -> Bool {
guard
isWorkspaceReady,
!isRunning,
let index = workspace.tasks.firstIndex(where: { $0.id == id })
else { return false }
guard workspace.tasks[index].isCompleted != isCompleted else {
return false
}
workspace.tasks[index].isCompleted = isCompleted
workspace.tasks[index].completedAt = isCompleted ? Date() : nil
persistSoon()
return true
}
@discardableResult
func saveSettings(_ settings: AgentSettings) -> AgentSettings? {
guard isWorkspaceReady, !isRunning else { return nil }
let appliedSettings = sanitized(settings)
workspace.settings = appliedSettings
persistSoon()
recordStandalone(
kind: .persistence,
status: .information,
title: "Settings updated",
detail: "The local save was queued. Any storage failure will appear here."
)
return appliedSettings
}
private func waitForApproval(_ request: ToolApprovalRequest) async -> Bool {
guard activeRunID == request.runID, pendingApproval == nil else {
return false
}
return await withTaskCancellationHandler {
await withCheckedContinuation { continuation in
guard !Task.isCancelled else {
continuation.resume(returning: false)
return
}
pendingApproval = request
approvalContinuation = continuation
let interval = max(0, request.expiresAt.timeIntervalSinceNow)
approvalExpiryTask = Task { [weak self] in
do {
try await Task.sleep(for: .seconds(interval))
} catch {
return
}
guard let self else { return }
self.resolveApproval(approved: false, matching: request.id)
}
}
} onCancel: { [weak self] in
Task { @MainActor in
self?.resolveApproval(approved: false, matching: request.id)
}
}
}
private func resolveApproval(
approved: Bool,
matching requestID: UUID? = nil
) {
if let requestID, pendingApproval?.id != requestID { return }
approvalExpiryTask?.cancel()
approvalExpiryTask = nil
pendingApproval = nil
let continuation = approvalContinuation
approvalContinuation = nil
continuation?.resume(returning: approved)
}
private func applyCheckpoint(
_ update: AgentRunCheckpointUpdate,
runID: UUID
) async throws {
guard
isWorkspaceReady,
let persistence,
let index = workspace.runs.firstIndex(where: { $0.id == runID }),
!workspace.runs[index].status.isTerminal
else {
throw AssistantSessionError.persistenceUnavailable
}
switch update {
case .phase(let phase):
workspace.runs[index].checkpoint.phase = phase
workspace.runs[index].checkpoint.activeCall = nil
case .activeCall(let call, let phase):
workspace.runs[index].checkpoint.phase = phase
workspace.runs[index].checkpoint.activeCall = call
case .counters(let toolCallsUsed, let modelTurns):
workspace.runs[index].checkpoint.toolCallsUsed = toolCallsUsed
workspace.runs[index].checkpoint.modelTurns = modelTurns
case .completedReceipt(let receipt, let toolCallsUsed, let modelTurns):
if !workspace.runs[index].checkpoint.completedReceipts.contains(
where: { $0.call.id == receipt.call.id }
) {
workspace.runs[index].checkpoint.completedReceipts.append(receipt)
workspace.runs[index].checkpoint.completedReceipts = Array(
workspace.runs[index].checkpoint.completedReceipts.suffix(
AgentSettings.maxToolStepsRange.upperBound
)
)
}
workspace.runs[index].checkpoint.activeCall = nil
workspace.runs[index].checkpoint.toolCallsUsed = toolCallsUsed
workspace.runs[index].checkpoint.modelTurns = modelTurns
}
workspace.runs[index].checkpoint.updatedAt = Date()
try await persistImmediately(using: persistence)
}
private func persistImmediately(
using persistence: AssistantPersistence
) async throws {
if let persistenceTask {
await persistenceTask.value
}
guard
isWorkspaceReady,
let currentPersistence = self.persistence,
currentPersistence === persistence
else {
throw AssistantSessionError.persistenceUnavailable
}
try await persistence.save(workspace)
}
private func markCancellationRequested(
runID: UUID,
reason: AgentRunStopReason
) {
guard
let index = workspace.runs.firstIndex(where: { $0.id == runID }),
!workspace.runs[index].status.isTerminal
else { return }
workspace.runs[index].status = .cancellationRequested
workspace.runs[index].stopReason = workspace.runs[index].stopReason ?? reason
workspace.runs[index].checkpoint.updatedAt = Date()
persistSoon()
}
private func markRunTerminal(
runID: UUID,
status: AgentRunStatus,
stopReason: AgentRunStopReason?,
finalMessageID: UUID?,
errorSummary: String?,
toolCallsUsed: Int? = nil,
modelTurns: Int? = nil
) {
guard
status.isTerminal,
let index = workspace.runs.firstIndex(where: { $0.id == runID }),
!workspace.runs[index].status.isTerminal
else { return }
workspace.runs[index].status = status
workspace.runs[index].stopReason = stopReason
?? workspace.runs[index].stopReason
workspace.runs[index].checkpoint.phase = .finalizing
workspace.runs[index].checkpoint.activeCall = nil
if let toolCallsUsed {
workspace.runs[index].checkpoint.toolCallsUsed = toolCallsUsed
}
if let modelTurns {
workspace.runs[index].checkpoint.modelTurns = modelTurns
}
workspace.runs[index].checkpoint.updatedAt = Date()
workspace.runs[index].completedAt = Date()
workspace.runs[index].finalMessageID = finalMessageID
workspace.runs[index].errorSummary = errorSummary.map {
String($0.prefix(500))
}
trimRunHistory()
}
private func markTerminalPersistenceFailure(runID: UUID, error: Error) {
guard let index = workspace.runs.firstIndex(where: { $0.id == runID }) else {
return
}
workspace.runs[index].status = .failed
workspace.runs[index].stopReason = .storageFailure
workspace.runs[index].checkpoint.phase = .finalizing
workspace.runs[index].checkpoint.activeCall = nil
workspace.runs[index].checkpoint.updatedAt = Date()
workspace.runs[index].completedAt = workspace.runs[index].completedAt
?? Date()
workspace.runs[index].errorSummary = String(
"The terminal result could not be confirmed durable: \(error.localizedDescription)"
.prefix(500)
)
}
private func runStopReason(runID: UUID) -> AgentRunStopReason? {
workspace.runs.first(where: { $0.id == runID })?.stopReason
}
private func terminalizeStoppedRun(
runID: UUID,
reason: AgentRunStopReason?,
persistence: AssistantPersistence
) async {
guard activeRunID == runID else { return }
let resolution = AgentRunTerminalClassifier.cancellation(for: reason)
let finalMessage = AssistantMessage(
role: .assistant,
content: resolution.message + terminalReceiptAppendix(for: runID),
wasStopped: true
)
workspace.messages.append(finalMessage)
record(
AgentEvent(
runID: runID,
sequence: nextSequence(for: runID),
kind: .run,
status: resolution.eventStatus,
title: resolution.title,
detail: resolution.detail
)
)
markRunTerminal(
runID: runID,
status: resolution.status,
stopReason: resolution.stopReason,
finalMessageID: finalMessage.id,
errorSummary: resolution.errorSummary
)
modelStatus = idleModelStatus
do {
try await persistImmediately(using: persistence)
} catch {
markTerminalPersistenceFailure(runID: runID, error: error)
markPersistenceUnavailable(error)
}
}
private func finishRunState(runID: UUID) {
guard activeRunID == runID else { return }
runTimeoutTask?.cancel()
runTimeoutTask = nil
resolveApproval(approved: false)
activeRunID = nil
isRunning = false
runTask = nil
}
private func trimRunHistory() {
let removable = workspace.runs.filter { $0.status.isTerminal }
let overflow = max(0, removable.count - 100)
guard overflow > 0 else { return }
let removedIDs = Set(removable.prefix(overflow).map(\.id))
workspace.runs.removeAll { removedIDs.contains($0.id) }
}
private func toolExecutionContext(runID: UUID) -> AgentToolExecutionContext {
AgentToolExecutionContext(
snapshot: { [weak self] in
guard let self else { return .empty }
return await self.workspaceSnapshot()
},
isApplicationActive: { [weak self] in
guard let self else { return false }
return await self.applicationIsActive
},
commitLocalWrite: {
[weak self] mutation, call, definition, resultBuilder in
guard let self else {
throw AssistantSessionError.sessionUnavailable
}
return try await self.applyWorkspaceMutation(
mutation,
runID: runID,
call: call,
definition: definition,
resultBuilder: resultBuilder
)
}
)
}
private func workspaceSnapshot() -> AssistantWorkspace {
workspace
}
private func applyWorkspaceMutation(
_ mutation: AssistantWorkspaceMutation,
runID: UUID,
call: AgentToolCall,
definition: AgentToolDefinition,
resultBuilder: AssistantWorkspaceResultBuilder
) async throws -> AgentToolResult {
guard isWorkspaceReady, let persistence else {
throw AssistantSessionError.persistenceUnavailable
}
// Finish any older snapshot before beginning this transaction. Nothing in
// the live workspace is mutated while this potentially long wait occurs.
if let persistenceTask {
await persistenceTask.value
}
try Task.checkCancellation()
guard
isWorkspaceReady,
let currentPersistence = self.persistence,
currentPersistence === persistence,
activeRunID == runID
else {
throw AssistantSessionError.persistenceUnavailable
}
let previousWorkspace = workspace
let result: AssistantWorkspaceMutationResult
switch mutation {
case .saveMemory(let item):
guard workspace.memories.count < 500 else {
throw AssistantSessionError.memoryLimitReached
}
workspace.memories.append(item)
if workspace.knowledgeItems.count < KnowledgeEngine.Limits.maxCorpusItems {
workspace.knowledgeItems.append(
KnowledgeItem(
id: item.id,
kind: .fact,
title: "Saved memory",
content: item.content,
tags: ["memory"],
source: .user,
createdAt: item.createdAt
)
)
appendAutomaticKnowledgeDigestIfNeeded(trigger: "memory capture")
}
result = .memory(item)
case .captureKnowledge(let item):
guard workspace.knowledgeItems.count < KnowledgeEngine.Limits.maxCorpusItems else {
throw AssistantSessionError.knowledgeLimitReached
}
workspace.knowledgeItems.append(item)
appendAutomaticKnowledgeDigestIfNeeded(trigger: "fifth capture")
result = .knowledge(item)
case .createHandoff(let handoff):
if let index = workspace.handoffs.firstIndex(where: { $0.id == handoff.id }) {
workspace.handoffs[index] = handoff
} else {
guard workspace.handoffs.count < 100 else {
throw AssistantSessionError.handoffLimitReached
}
workspace.handoffs.append(handoff)
}
workspace.activeHandoffID = handoff.id
result = .handoff(handoff)
case .restoreHandoff(let id, let restoredAt):
guard let index = workspace.handoffs.firstIndex(where: { $0.id == id }) else {
throw AssistantSessionError.handoffNotFound
}
workspace.handoffs[index].restoredAt = restoredAt
workspace.activeHandoffID = id
result = .handoff(workspace.handoffs[index])
case .deactivateHandoff(let id):
guard workspace.activeHandoffID == id else {
throw AssistantSessionError.handoffNotActive
}
guard let handoff = workspace.handoffs.first(where: { $0.id == id }) else {
throw AssistantSessionError.handoffNotFound
}
workspace.activeHandoffID = nil
result = .handoff(handoff)
case .addTask(let item):
guard workspace.tasks.count < 500 else {
throw AssistantSessionError.taskLimitReached
}
workspace.tasks.append(item)
result = .task(item)
case .completeTask(let id, let completedAt):
guard let index = workspace.tasks.firstIndex(where: { $0.id == id }) else {
throw AssistantSessionError.taskNotFound
}
workspace.tasks[index].isCompleted = true
workspace.tasks[index].completedAt = completedAt
result = .task(workspace.tasks[index])
case .reopenTask(let id):
guard let index = workspace.tasks.firstIndex(where: { $0.id == id }) else {
throw AssistantSessionError.taskNotFound
}
guard workspace.tasks[index].isCompleted else {
throw AssistantSessionError.taskAlreadyOpen
}
workspace.tasks[index].isCompleted = false
workspace.tasks[index].completedAt = nil
result = .task(workspace.tasks[index])
}
let toolResult: AgentToolResult
do {
toolResult = try resultBuilder(result).bounded(
toMaximumCharacters: definition.maxOutputCharacters
)
} catch {
workspace = previousWorkspace
throw error
}
guard
toolResult.succeeded,
let receipt = AgentToolReceipt(
runID: runID,
call: call,
definition: definition,
result: toolResult
)
else {
workspace = previousWorkspace
throw AssistantSessionError.unreceiptableToolResult
}
workspace.events.append(
AgentEvent(
runID: runID,
sequence: nextSequence(for: runID),
kind: .tool,
status: .succeeded,
title: "Tool completed",
detail: receipt.evidenceJSON,
receipt: receipt
)
)
if let runIndex = workspace.runs.firstIndex(where: { $0.id == runID }),
!workspace.runs[runIndex].checkpoint.completedReceipts.contains(
where: { $0.call.id == receipt.call.id }
)
{
workspace.runs[runIndex].checkpoint.completedReceipts.append(receipt)
workspace.runs[runIndex].checkpoint.completedReceipts = Array(
workspace.runs[runIndex].checkpoint.completedReceipts.suffix(
AgentSettings.maxToolStepsRange.upperBound
)
)
workspace.runs[runIndex].checkpoint.activeCall = nil
workspace.runs[runIndex].checkpoint.updatedAt = Date()
}
if workspace.events.count > 500 {
workspace.events.removeFirst(workspace.events.count - 500)
}
do {
// Once the in-memory transaction exists, finish the atomic save even if
// cancellation arrives. This keeps the local write and its receipt in the
// same durable snapshot.
try await persistence.save(workspace)
return toolResult
} catch {
workspace = previousWorkspace
markPersistenceUnavailable(error)
throw error
}
}
private func record(_ event: AgentEvent) {
if let receipt = event.receipt,
workspace.events.contains(where: {
$0.receipt?.runID == receipt.runID
&& $0.receipt?.call.id == receipt.call.id
})
{
return
}
workspace.events.append(event)
if workspace.events.count > 500 {
workspace.events.removeFirst(workspace.events.count - 500)
}
persistSoon()
}
private func terminalReceiptAppendix(for runID: UUID) -> String {
var seen: Set<UUID> = []
let receipts = workspace.events.compactMap(\.receipt).filter { receipt in
receipt.runID == runID && seen.insert(receipt.call.id).inserted
}
guard !receipts.isEmpty else {
return ""
}
let hasLocalWrites = receipts.contains { $0.risk == .localWrite }
return hasLocalWrites
? "\n\nSome local changes completed before the stop. Review Activity before retrying."
: "\n\nSome read-only steps completed before the stop. Details are in Activity."
}
private func recordStandalone(
kind: AgentEventKind,
status: AgentEventStatus,
title: String,
detail: String
) {
record(
AgentEvent(
sequence: nextSequence(for: nil),
kind: kind,
status: status,
title: title,
detail: detail
)
)
}
private func nextSequence(for runID: UUID?) -> Int {
(workspace.events
.filter { $0.runID == runID }
.map(\.sequence)
.max() ?? 0) + 1
}
private func persistSoon() {
guard isWorkspaceReady, let persistence else { return }
let snapshot = workspace
let previousTask = persistenceTask
persistenceTask = Task { [weak self, persistence] in
if let previousTask {
await previousTask.value
}
do {
try await persistence.save(snapshot)
} catch {
self?.markPersistenceUnavailable(error)
}
}
}
private func markPersistenceUnavailable(_ error: Error) {
if let activeRunID,
let index = workspace.runs.firstIndex(where: { $0.id == activeRunID }),
!workspace.runs[index].status.isTerminal
{
workspace.runs[index].status = .cancellationRequested
workspace.runs[index].stopReason = .storageFailure
workspace.runs[index].checkpoint.updatedAt = Date()
}
persistence = nil
isWorkspaceReady = false
errorMessage =
"Local storage became unavailable. Unsaved changes may be visible but are not confirmed durable: \(error.localizedDescription)"
modelStatus = "Local storage unavailable"
resolveApproval(approved: false)
runTimeoutTask?.cancel()
runTimeoutTask = nil
loadModelTask?.cancel()
runTask?.cancel()
}
private func trimWorkspaceHistory() {
if workspace.messages.count > 200 {
workspace.messages.removeFirst(workspace.messages.count - 200)
}
while workspace.messages.first?.role == .assistant {
workspace.messages.removeFirst()
}
}
private func sanitized(_ workspace: AssistantWorkspace) -> AssistantWorkspace {
var value = workspace
value.messages = Array(value.messages.suffix(200)).compactMap { message in
guard message.role == .assistant else { return message }
var cleaned = message
cleaned.content = AssistantChatText.cleaned(message.content)
return cleaned.content.isEmpty ? nil : cleaned
}
while value.messages.first?.role == .assistant {
value.messages.removeFirst()
}
value.events = Array(value.events.suffix(500))
value.memories = Array(value.memories.suffix(500))
value.knowledgeItems = Array(
value.knowledgeItems.suffix(KnowledgeEngine.Limits.maxCorpusItems)
)
value.knowledgeDigests = Array(value.knowledgeDigests.suffix(50))
value.handoffs = Array(value.handoffs.suffix(100))
if let activeHandoffID = value.activeHandoffID,
!value.handoffs.contains(where: { $0.id == activeHandoffID })
{
value.activeHandoffID = nil
}
value.tasks = Array(value.tasks.suffix(500))
value.recoverInterruptedRuns()
value.events = Array(value.events.suffix(500))
let removableRuns = value.runs.filter { $0.status.isTerminal }
let overflow = max(0, removableRuns.count - 100)
if overflow > 0 {
let removedIDs = Set(removableRuns.prefix(overflow).map(\.id))
value.runs.removeAll { removedIDs.contains($0.id) }
}
value.settings = sanitized(value.settings)
return value
}
private func sanitized(_ settings: AgentSettings) -> AgentSettings {
settings.sanitized()
}
private func appendAutomaticKnowledgeDigestIfNeeded(trigger: String) {
guard
!workspace.knowledgeItems.isEmpty,
workspace.knowledgeItems.count.isMultiple(of: 5)
else { return }
let activeHandoff = workspace.activeHandoffID.flatMap { activeID in
workspace.handoffs.first { $0.id == activeID }
}
let digest = KnowledgeEngine().synthesizeContext(
knowledge: workspace.knowledgeItems,
tasks: workspace.tasks,
handoff: activeHandoff,
trigger: trigger
)
if let index = workspace.knowledgeDigests.firstIndex(where: { $0.id == digest.id }) {
workspace.knowledgeDigests[index] = digest
} else {
workspace.knowledgeDigests.append(digest)
}
workspace.knowledgeDigests = Array(workspace.knowledgeDigests.suffix(50))
}
private func removeKnowledgeAndDerivedState(ids: Set<UUID>) {
guard !ids.isEmpty else { return }
let cascade = KnowledgeEngine().deletionCascade(
deletingKnowledgeIDs: ids,
handoffs: workspace.handoffs,
digests: workspace.knowledgeDigests
)
workspace.knowledgeItems.removeAll { ids.contains($0.id) }
for index in workspace.knowledgeItems.indices {
workspace.knowledgeItems[index].relatedItemIDs.removeAll {
ids.contains($0)
}
}
workspace.handoffs.removeAll { cascade.handoffIDs.contains($0.id) }
workspace.knowledgeDigests.removeAll { cascade.digestIDs.contains($0.id) }
if let activeID = workspace.activeHandoffID,
cascade.handoffIDs.contains(activeID)
{
workspace.activeHandoffID = nil
}
}
private func scrubConversationCopiesFromHandoffs() {
workspace.handoffs = workspace.handoffs.map {
$0.removingRecentConversationContext()
}
}
private static func format(_ value: Double) -> String {
String(format: "%.2f", value)
}
}
|