Summary
Dragging and dropping a file into an empty note should automatically handle it based on file type:
- Audio files → transcribe the audio and populate the note
- Text-based transcript files (e.g.
.vtt, .txt, .srt, etc.) → parse the transcript and populate the note
Details
Text-based transcript files can come in many formats with varying structures. We may need to use an LLM to analyze the structure first before parsing, rather than relying on rigid format-specific parsers.
Acceptance criteria
Related
This is related to #2884 and #2854