Rename Meeting Mind to Context Recall and update project copy#29
Rename Meeting Mind to Context Recall and update project copy#29JWhite212 wants to merge 1 commit into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 981b1af443
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| { | ||
| slug: "meeting-mind", | ||
| title: "Meeting Mind", | ||
| slug: "context-recall", |
There was a problem hiding this comment.
Preserve legacy project slug with a redirect alias
Changing the case-study slug from meeting-mind to context-recall makes /projects/meeting-mind unreachable, and app/projects/[slug]/page.tsx calls notFound() for unknown slugs, so previously shared links/bookmarks and indexed URLs now return 404. Keep the renamed title, but add a redirect or slug alias so the old route resolves to the new canonical page.
Useful? React with 👍 / 👎.
| { | ||
| slug: "meeting-mind", | ||
| title: "Meeting Mind", | ||
| slug: "context-recall", |
There was a problem hiding this comment.
Preserve legacy project slug with a redirect alias
Changing the case-study slug to context-recall makes /projects/meeting-mind unreachable because unknown slugs fall through to notFound() in the dynamic route handler, so existing bookmarks/shared links for the old URL now 404. Add a redirect/alias from the legacy slug to the new slug to avoid breaking previously published project URLs.
Useful? React with 👍 / 👎.
| title: "Local-first transcription with MLX Whisper", | ||
| detail: | ||
| "Runs the entire speech-to-text pipeline on-device using faster-whisper's CTranslate2 backend, avoiding cloud transcription APIs entirely. This keeps all meeting audio on the machine, addresses privacy requirements for sensitive discussions, and eliminates per-minute API costs.", | ||
| "Runs the entire speech-to-text pipeline on-device using MLX Whisper's CTranslate2 backend, avoiding cloud transcription APIs entirely. This keeps all meeting audio on the machine, addresses privacy requirements for sensitive discussions, and eliminates per-minute API costs.", |
There was a problem hiding this comment.
Remove incorrect CTranslate2 backend claim for MLX Whisper
This text now states the transcription stack is MLX Whisper on a CTranslate2 backend, but those are different inference backends, so the updated case study describes an internally inconsistent architecture. Because this portfolio page is meant to communicate technical decisions, this mislabels the implementation and should be corrected to the actual backend used.
Useful? React with 👍 / 👎.
Motivation
Meeting Mindreferences with the new project nameContext Recallacross README and site content to keep the portfolio accurate.Description
README.mdtoContext Recalland replaced the repo link withhttps://github.com/JWhite212/context-recall.lib/content.tscase study: changedslugtocontext-recall,titletoContext Recall, rewrotesummary,problem, andapproachtext to emphasise "consented recordings", "user-controlled capture", "local-first", and "privacy-conscious meeting recall".faster-whisperwithMLX Whisper, updated stack, metrics, architecture, mediaalttext and captions, and added wording that data and logs are stored in app-managed local paths under user control.npx prettier --writeand committed the changes; a PR was created for review.Testing
npm run check; initial run reported Prettier style issues which were fixed by runningnpx prettier --writeand re-checking (format check now passes).npm run lint; the lint step fails due to an existing repository configuration issue (Invalid project directory provided, no such directory: /workspace/Portfolio-Website/lint) which is unrelated to this rename and remains outstanding.Codex Task