Open
Conversation
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.
Hi team,
I've completed all 4 problems of the GenAI assignment. Here's a quick summary of what's included:
Problem 1 – Video-to-Notes Pipeline: Compared three approaches (Cloud SaaS, Hybrid Local+LLM API, and Fully Offline). Recommended the Hybrid approach using Whisper API + Gemini 1.5 Pro for best quality/cost balance, with a full batch pipeline design including error handling and timestamp accuracy mitigations.
Problem 2 – LinkedIn Post Generator: Designed a zero-shot prompt that takes a user persona + topic and generates 3 structurally distinct LinkedIn drafts (Concise Insight, Story-Based, Actionable Listicle) as structured JSON in a single API call. Includes API settings, edge case handling, and a user review/approval flow before publishing.
Problem 3 – DOCX Template Bulk Generator: Proposed a system where GenAI (GPT-4o/Gemini) reads a plain Word document and automatically detects variable fields — no manual placeholder tagging required. Covers the full flow: AI detection → human review → single fill → bulk generation via Excel with validation and error reporting.
Problem 4 – Character Video Series Generator: Designed a 5-step episode pipeline (Script → Storyboard → Visuals → Audio → Video) built on top of a persistent Series Bible. Addressed the hardest challenges: character visual consistency via IP-Adapter face embeddings, 5-minute pacing via word-count control, and cross-episode continuity via a character state tracker.
All solutions are practical and implementable with currently available tools and APIs. Happy to discuss any of the design decisions.