6d0c8be8c9
Reconciliation (the marry-the-signals layer): after transcription, before the recap, SpeakerReconciler (1) MERGES non-self clusters whose voiceprints are highly similar (cosine >= 0.82) — fixes a person split across chunks (the real 1-on-1 failure: one remote came back as 'MH' + 'Unknown_0'); and (2) NAMES remaining non-self clusters from transcript CONTENT via the gateway LLM (people addressed by name / self-intros), conservative + confidence-gated, keeping the placeholder when unrevealed. The mic-channel self is protected and never reassigned. Voice does the segmentation; the fingerprint-merge fixes splits; the LLM adds the content signal visual/voiceprint lack. - SpeakerReconciler: pure cosine merge (tested) + LLM content-naming pass; rewrites speakers.json before recap. SessionController.finishBackend shares one model lookup for reconcile + recap. Gated by settings.reconcileSpeakers (default on). - Open saved session: menu 'Open saved session…' → folder picker. Edits it if already transcribed, else reconstructs inputs from disk (visual_timeline vision segs + channel self-spans) and runs transcribe → reconcile → recap, then opens the editor. Lets you evaluate/correct ANY past call, not just the in-memory last one. Note (from real Signal data): visual naming is unreliable on Signal (sparse, misread initials, lowercase/center names) — so reconciliation + the editor (which teaches voiceprints on confirm) carry it; the editor remains the human arbiter. 59/59 XCTest.
92 lines
3.7 KiB
Swift
92 lines
3.7 KiB
Swift
import SwiftUI
|
|
import AppKit
|
|
|
|
/// Settings panel (pushed from the menu-bar panel).
|
|
struct SettingsView: View {
|
|
@EnvironmentObject private var settings: AppSettings
|
|
|
|
var body: some View {
|
|
Form {
|
|
Section("SparkControl backend") {
|
|
TextField("Base URL", text: $settings.backendBaseURL)
|
|
.textFieldStyle(.roundedBorder)
|
|
Toggle("Skip TLS verification (self-signed cert)",
|
|
isOn: $settings.skipTLSVerification)
|
|
}
|
|
|
|
Section("Call detection") {
|
|
Toggle("Auto-record when a call is detected", isOn: $settings.autoRecordOnDetection)
|
|
Text("Detects Zoom, Teams, Signal, and Google Meet (any browser).")
|
|
.font(.caption)
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
|
|
Section("Transcription") {
|
|
TextField("Your name", text: $settings.selfName)
|
|
.textFieldStyle(.roundedBorder)
|
|
Toggle("Auto-send recordings to backend", isOn: $settings.autoSendOnStop)
|
|
Toggle("Reconcile speakers (merge splits + name from content)", isOn: $settings.reconcileSpeakers)
|
|
Toggle("Build readable recap (topics + highlights)", isOn: $settings.recapEnabled)
|
|
HStack {
|
|
Picker("Default recap template", selection: $settings.defaultTemplateId) {
|
|
ForEach(settings.recapTemplates) { Text($0.name).tag($0.id) }
|
|
}
|
|
Button("Manage…") { TemplatesWindow.shared.show(settings: settings) }
|
|
}
|
|
Text("Your name labels your mic channel. Auto-send transcribes on stop; the recap writes transcript.md + recap.html. Templates define the takeaways categories per meeting type.")
|
|
.font(.caption)
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
|
|
Section("Output") {
|
|
HStack {
|
|
Text(settings.outputFolderPath)
|
|
.lineLimit(1)
|
|
.truncationMode(.middle)
|
|
.foregroundStyle(.secondary)
|
|
Spacer()
|
|
Button("Choose…", action: chooseFolder)
|
|
}
|
|
}
|
|
|
|
Section("Adapters") {
|
|
Text("Inert in Phase 0 — these toggles only persist for now.")
|
|
.font(.caption)
|
|
.foregroundStyle(.secondary)
|
|
ForEach(AppSettings.adapterKeys, id: \.key) { adapter in
|
|
Toggle(adapter.label, isOn: binding(for: adapter.key))
|
|
}
|
|
}
|
|
}
|
|
.formStyle(.grouped)
|
|
.frame(width: 320)
|
|
.navigationTitle("Settings")
|
|
}
|
|
|
|
private func binding(for key: String) -> Binding<Bool> {
|
|
Binding(
|
|
get: { settings.adapterEnabled[key] ?? true },
|
|
set: { settings.adapterEnabled[key] = $0 }
|
|
)
|
|
}
|
|
|
|
private func chooseFolder() {
|
|
let panel = NSOpenPanel()
|
|
panel.canChooseDirectories = true
|
|
panel.canChooseFiles = false
|
|
panel.allowsMultipleSelection = false
|
|
panel.prompt = "Choose"
|
|
panel.directoryURL = settings.outputFolderURL
|
|
|
|
// The app is a menu-bar accessory and this is invoked from the transient
|
|
// MenuBarExtra(.window) popover. Use the async begin(...) API rather than
|
|
// runModal() — a nested modal loop can let the popover dismiss the panel
|
|
// out from under it. Activate first so the panel comes to the front.
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
panel.begin { response in
|
|
guard response == .OK, let url = panel.url else { return }
|
|
settings.outputFolderPath = url.path
|
|
}
|
|
}
|
|
}
|