feat: add FSBO real estate lead generation module - #4
Open
chazam41892-gif wants to merge 1 commit into
Open
Conversation
Adds a complete FSBO (For Sale By Owner) real estate lead generation pipeline to the sales outreach automation system: - FSBO listing discovery via web search + LLM extraction - Property analysis and seller motivation assessment - Seller lead scoring with configurable criteria - Personalized outreach email and interview script generation - Full LangGraph workflow (discover → analyze → score → outreach) - FSBOLeadLoader implementing LeadLoaderBase interface - Comprehensive documentation with usage examples New files: src/tools/fsbo_tools.py - FSBO property search & extraction src/fsbo_lead_loader.py - FSBOLeadLoader (LeadLoaderBase) src/prompts_fsbo.py - Real estate LLM prompts src/fsbo_nodes.py - FSBO workflow processing nodes src/fsbo_graph.py - FSBO LangGraph workflow docs/real-estate-lead-generation.md - Documentation Modified: src/state.py - Added FSBO data models src/structured_outputs.py - Added FSBOSellerEmail model
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
This PR adds a complete FSBO (For Sale By Owner) real estate lead generation pipeline to the sales outreach automation system. It allows the system to discover homeowners selling without a real estate agent, analyze seller motivation, and generate personalized outreach materials.
What's Included
New Components
Extended Files
Architecture
The FSBO workflow follows the same LangGraph pattern as the existing outreach automation:
discover_fsbo_listings -> check_for_remaining_leads
| (found leads)
analyze_property -> score_seller_lead
| (qualified)
generate_seller_outreach_email -> generate_seller_interview_script
|
save_reports -> loop back
Design Decisions