Skip to content

Commit a5c7856

Browse files
authored
Merge pull request #224 from vegerot/pr224
better progress message on cards
2 parents ac5c834 + 6a217f7 commit a5c7856

3 files changed

Lines changed: 20 additions & 20 deletions

File tree

Dayflow/Dayflow/Core/AI/ChatCLIPromptPreferences.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ DETAILED SUMMARY
141141
Granular activity log. This is the "show me exactly what happened" view.
142142
143143
Format:
144-
[H:MM AM/PM] - [H:MM AM/PM] [specific action] [in app/tool] [on what]
144+
[H:MM AM/PM] - [H:MM AM/PM]: [specific action] [in app/tool] [on what]
145145
Each line should be one sentence (~25 words max). Be concise but detailed.
146146
147147
Include:
@@ -151,17 +151,17 @@ Include:
151151
- Content context: what topic, what section, who you messaged
152152
153153
Good example:
154-
"7:00 AM - 7:08 AM edited "Q4 Launch Plan" in Notion, added timeline section
155-
7:08 AM - 7:10 AM replied to Mike in Slack #engineering
156-
7:10 AM - 7:12 AM scrolled X home feed
157-
7:12 AM - 7:18 AM back to Notion, wrote launch risks section
158-
7:18 AM - 7:20 AM searched Google "feature flag best practices"
159-
7:20 AM - 7:25 AM read LaunchDarkly docs
160-
7:25 AM - 7:30 AM added feature flag notes to Notion doc"
154+
"7:00 AM - 7:08 AM: edited "Q4 Launch Plan" in Notion, added timeline section
155+
7:08 AM - 7:10 AM: replied to Mike in Slack #engineering
156+
7:10 AM - 7:12 AM: scrolled X home feed
157+
7:12 AM - 7:18 AM: back to Notion, wrote launch risks section
158+
7:18 AM - 7:20 AM: searched Google "feature flag best practices"
159+
7:20 AM - 7:25 AM: read LaunchDarkly docs
160+
7:25 AM - 7:30 AM: added feature flag notes to Notion doc"
161161
162162
Bad example:
163163
"7:00 AM - 7:30 AM writing Notion doc
164-
7:30 AM - 7:35 AM Slack
164+
7:30 AM - 7:35: AM Slack
165165
7:35 AM - 8:00 AM coding"
166166
(Too coarse — what doc? which Slack channel? coding what?)
167167
"""

Dayflow/Dayflow/Core/AI/GeminiPromptPreferences.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Never use:
118118
This is the "show me exactly what happened" view. Every app, every switch, every action.
119119
120120
Format each line as:
121-
[H:MM AM/PM] - [H:MM AM/PM] [specific action] [in app/tool] [on what]
121+
[H:MM AM/PM] - [H:MM AM/PM]: [specific action] [in app/tool] [on what]
122122
123123
Include:
124124
- Specific file/document names when visible
@@ -127,17 +127,17 @@ Include:
127127
- Content context: what topic, what section, who you messaged
128128
129129
Good example:
130-
"7:00 AM - 7:08 AM edited "Q4 Launch Plan" in Notion, added timeline section
131-
7:08 AM - 7:10 AM replied to Mike in Slack #engineering
132-
7:10 AM - 7:12 AM scrolled X home feed
133-
7:12 AM - 7:18 AM back to Notion, wrote launch risks section
134-
7:18 AM - 7:20 AM searched Google "feature flag best practices"
135-
7:20 AM - 7:25 AM read LaunchDarkly docs
136-
7:25 AM - 7:30 AM added feature flag notes to Notion doc"
130+
"7:00 AM - 7:08 AM: edited "Q4 Launch Plan" in Notion, added timeline section
131+
7:08 AM - 7:10 AM: replied to Mike in Slack #engineering
132+
7:10 AM - 7:12 AM: scrolled X home feed
133+
7:12 AM - 7:18 AM: back to Notion, wrote launch risks section
134+
7:18 AM - 7:20 AM: searched Google "feature flag best practices"
135+
7:20 AM - 7:25 AM: read LaunchDarkly docs
136+
7:25 AM - 7:30 AM: added feature flag notes to Notion doc"
137137
138138
Bad example:
139139
"7:00 AM - 7:30 AM writing Notion doc
140-
7:30 AM - 7:35 AM Slack
140+
7:30 AM - 7:35 AM: Slack
141141
7:35 AM - 8:00 AM coding"
142142
(Too coarse — what doc? which Slack channel? coding what?)
143143

Dayflow/Dayflow/Views/UI/RetryCoordinator.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ final class RetryCoordinator: ObservableObject {
159159
private func stepLabel(_ step: LLMProcessingStep) -> String {
160160
switch step {
161161
case .transcribing:
162-
return "Transcribing"
162+
return "1/2 Transcribing"
163163
case .generatingCards:
164-
return "Generating cards"
164+
return "2/2 Generating cards"
165165
}
166166
}
167167
}

0 commit comments

Comments
 (0)