Added the stremlit UI for tailoring the AI resume - #7
Open
Devesh-Maheshwari wants to merge 3 commits into
Open
Conversation
Author
|
@camunity Can you please review it |
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.
Summary
Wraps the existing V2 pipeline in a Streamlit web app so the tool is usable by
anyone, not just people who can run a Colab notebook. The underlying pipeline
functions are unchanged — they were refactored out of the notebook into an
importable module (
pipeline.py) and driven by a UI.Closes #5
What changed
pipeline.py— the notebook's steps as importable functions(
fetch_github_repos,chunk_source_material,extract_jd_requirements,retrieve_relevant_experience,generate_tailored_resume,evaluate_rag_coverage), plus the fabrication check, injection screen, anddiff. Logic preserved; only parameterized to drop Colab-only bits
(
userdata,files.upload,input()). Added arun_pipeline()generatorthat yields progress events, retry/503 handling, and user-facing errors.
app.py— Streamlit UI.requirements.txt,.streamlit/config.toml,tests/test_pipeline.py(20 tests),.gitignore.UX from the issue, addressed
.md/.txt) with a paste fallback[SOURCE]-tag toggle and Markdown downloadst.status(each pipeline step streams as it runs)messages instead of stack traces (GitHub failure is non-fatal; the run continues)
Verification
python -m pytest tests/)100% requirement coverage on the sample, fabrication check ran
ok)Run locally