feat: add AI task extraction for notetaker recordings#68
Closed
lucasheriques wants to merge 3 commits intofeat/live-transcripts-tanstack-queryfrom
Closed
feat: add AI task extraction for notetaker recordings#68lucasheriques wants to merge 3 commits intofeat/live-transcripts-tanstack-queryfrom
lucasheriques wants to merge 3 commits intofeat/live-transcripts-tanstack-queryfrom
Conversation
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
10 tasks
8f69b83 to
a36a57c
Compare
9b5435b to
09b2123
Compare
a36a57c to
a591531
Compare
32383d0 to
735241b
Compare
a591531 to
06bfbad
Compare
735241b to
26cfb73
Compare
f7ad489 to
320cdde
Compare
38403a7 to
8b19ab2
Compare
320cdde to
3bd4259
Compare
- Add task extraction IPC handler using OpenAI GPT-4o-mini - Create useExtractTasks hook with TanStack Query mutation - Add Extract Tasks button in LiveTranscriptView - Display extracted tasks with title and description - Show loading, error, and empty states - Require OpenAI API key in settings This allows users to extract actionable tasks from meeting transcripts with a single click, perfect for the demo today!
- Automatically trigger task extraction when meeting-ended IPC event fires - No need to wait for upload - extract tasks from local transcript segments - Only auto-extracts if OpenAI API key is configured - Users see tasks instantly when they return to check the recording This creates a magical UX - tasks are already extracted by the time users look at their recordings!
- Update uploadDesktopRecordingTranscript to accept extracted_tasks - Save extracted tasks to backend RecordingTranscript model - Fetch tasks from backend transcript instead of mutation state - Each recording now has its own tasks properly isolated This fixes the bug where all recordings were showing the same tasks.
3bd4259 to
7d86d35
Compare
8b19ab2 to
b6ce79d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

This allows users to extract actionable tasks from meeting transcripts
with a single click, perfect for the demo today!