File size: 4,932 Bytes
75c8388 7e481a4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 | **PROJECT OVERVIEW**
**Project Name:** AI-Powered Property Recommendation via Contact Request \& CRM\*\*
**Overview**
This project builds an AI-driven recommendation system that responds to user property requests submitted through the \*\*Contact Us\*\* form on a real estate website.
When a user submits a request specifying budget, location, property type, and preferences, the request is:
1\. Stored in the **CRM** as a lead
2\. Processed by the backend
3\. Passed into a vector search engine
4\. Used to retrieve the most relevant property listings
5\. Returned to the user via the **website chat interface** as recommended property links
This system improves lead response speed, relevance, and conversion by providing instant, intelligent property suggestions
**MVP(Minimal Viable Product) DEFINITION**
**MVP Goal**
Deliver **instant property recommendations** based on user specifications from the Contact Us form, while logging the request in the CRM
**MVP Scope (Phase 1)**
User Flow
1\. User clicks **Contact Us**
2\. User submits:
\* property type
\* location preference
\* budget
\* specifications
3\. Request is:
saved in CRM
sent to recommendation engine
4\. User receives:
5–10 recommended property links in chat
**Components**
* Contact Us form
* Backend API to receive lead
* CRM lead ingestion
* Vector search–based recommendation engine
* Chat response with property cards or links
**Recommendation Logic (MVP)**
* **Hard filters:** budget, listing type, location
* **Vector similarity:** semantic matching of property descriptions
* **Re-ranking:** closeness to budget + preference match
**Out of Scope (For MVP)**
* Personalized long-term user profiles
* Payment or booking
* Mobile app
* Analytics dashboard
* Agent assignment logic
**MVP Success Criteria**
* Recommendation response time < 2 seconds
* At least 70% relevance in manual review
* Works with ≥ 1,000 property listings
* CRM successfully stores every request
**ROLE ASSIGNMENT (TEAM OF 4–5)**
**AI / ML Lead**
Responsibilities:
* Define recommendation strategy
* Design embedding \& vector search pipeline
* Build Colab notebooks
* Define input/output schemas
* Validate recommendation quality
Ownership:
* Vector index
* Query logic
* Recommendation relevance
**Backend Engineer**
Responsibilities:
* Contact Us API endpoint
* CRM ingestion
* Recommendation service orchestration
* Chat response handling
Ownership:
* API contracts
* Service reliability
**Frontend Engineer**
Responsibilities:
* Contact Us form UI
* Chat interface UI
* Rendering recommendation cards/links
Ownership:
* User experience
* API integration
**Data / Infra Engineer (Optional but valuable)**
Responsibilities:
* Property dataset preparation
* Data cleaning \& normalization
* Storage \& deployment setup
Ownership:
* Data quality
* Environment stability
**Leadership rule:**
You own decision clarity, not all the code.
**DATASET PREPARATION (YOUR FIRST TECH TASK)**
**Required Property Dataset Fields**
Each property listing **must** include:
| Field | Description |
| ------------- | ------------------------------ |
| property\_id | Unique identifier |
| title | Short property title |
| description | Full description |
| listing\_type | sale / rent / shortlet |
| property\_type | apartment / duplex / land |
| price | Numeric value |
| location | City / area |
| bedrooms | Integer |
| bathrooms | Integer |
| amenities | List (parking, security, etc.) |
| url | Public listing link |
| status | available / unavailable |
**Fields Used for Vector Embeddings**
These fields are **combined into one semantic text**:
* title
* description
* amenities
* location
* property\_type
* listing\_type
Example combined text:
> “3 bedroom furnished apartment in Lekki Phase 1 with parking, 24-hour security, close to the beach.”
Fields Used for Filtering (NOT embeddings)
* price
* listing\_type
* location
* bedrooms (if strict)
**Dataset Sources**
* Existing company database
* Export from CMS
* Scraped listings (if approved)
* Mock dataset (for early MVP)
**Output of Dataset Preparation**
* Cleaned property table
* Text field for embeddings
* Metadata table for filters
* Ready for FAISS indexing
**CRM INTEGRATION (MVP VIEW)**
CRM Receives:
* User contact info
* Property request specs
* Timestamp
* Recommendation IDs returned
Why this matters:
* Agents can see what was recommended
* Follow-up becomes context-aware
* Better conversion tracking
|