@@ -959,7 +959,7 @@ struct ContentView: View {
959959 . listRowBackground ( self . sidebarRowBackground ( for: . voiceEngine) )
960960
961961 NavigationLink ( value: SidebarItem . aiEnhancements) {
962- Label ( " AI Enhancements " , systemImage: " brain " )
962+ Label ( " AI Enhancement " , systemImage: " brain " )
963963 . font ( . system( size: 15 , weight: . medium) )
964964 . padding ( . leading, 18 )
965965 }
@@ -1578,7 +1578,7 @@ struct ContentView: View {
15781578 return self . buildSystemPrompt ( appInfo: appInfo, dictationSlot: dictationSlot)
15791579 } ( )
15801580
1581- // Dictation cleanup folds the prompt + transcript into a single user
1581+ // Dictation enhancement folds the prompt + transcript into a single user
15821582 // turn (substituting `${transcript}` when present, otherwise appending
15831583 // the transcript after a blank line). Non-dictation callers — the AI
15841584 // chat tab specifically — keep the legacy two-message layout where
@@ -1631,7 +1631,7 @@ struct ContentView: View {
16311631 }
16321632 self . logDictationPromptTrace ( " Selected context text " , value: " <none (dictation mode)> " )
16331633 }
1634- DebugLogger . shared. debug ( " Using Apple Intelligence for transcription cleanup " , source: " ContentView " )
1634+ DebugLogger . shared. debug ( " Using Apple Intelligence for transcription enhancement " , source: " ContentView " )
16351635 let output = try await provider. process ( systemPrompt: systemPrompt, userText: userMessageContent)
16361636 if self . shouldTracePromptProcessing {
16371637 self . logDictationPromptTrace ( " Model answer (A) " , value: output)
@@ -1710,7 +1710,7 @@ struct ContentView: View {
17101710 )
17111711 }
17121712
1713- // Build messages array. For dictation cleanup the whole prompt +
1713+ // Build messages array. For dictation enhancement the whole prompt +
17141714 // transcript is folded into a single user message, so we omit the
17151715 // (empty) system role. Non-dictation callers keep the legacy
17161716 // system + user shape.
@@ -1722,7 +1722,7 @@ struct ContentView: View {
17221722
17231723 // NOTE: Transcription doesn't need streaming - the full result appears at once
17241724 // Streaming is only useful for Command/Rewrite modes where real-time display helps
1725- // Using non-streaming is simpler and more reliable for transcription cleanup
1725+ // Using non-streaming is simpler and more reliable for transcription enhancement
17261726 let enableStreaming = false // Hardcoded off for transcription
17271727
17281728 // Build LLMClient configuration
0 commit comments