File tree 3 files changed +5
-13
lines changed
3 files changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ BitMatch provides a streamlined platform where:
22
22
- The system suggests the most relevant projects based on a percentage match score.
23
23
- Students can apply to join suitable projects.
24
24
25
- ### 💬 Direct Messaging
25
+ ### 🤖 AI Match Score + Feedback
26
26
27
- - Innovators and students can communicate directly within the platform .
28
- - Enables seamless discussions about project roles, requirements, and feedback .
27
+ - Innovators can request AI feedback on their project ideas/postings .
28
+ - Students looking for projects can ask AI to evaluate how well of a fit they are for a project listing .
29
29
30
30
## 🛠 Tech Stack
31
31
@@ -38,6 +38,7 @@ BitMatch provides a streamlined platform where:
38
38
- Django
39
39
- AWS RDS Postgres Instance
40
40
- AWS S3 (For Images)
41
+ - Gemini API
41
42
42
43
### Deployment
43
44
@@ -49,7 +50,6 @@ BitMatch provides a streamlined platform where:
49
50
50
51
![ BitMatchArchitecture] ( https://github.com/user-attachments/assets/f359c19f-edbb-413d-a025-b9c5cde63bd0 )
51
52
52
-
53
53
## 🛠 Running Locally
54
54
55
55
### 1️⃣ ** Backend Setup**
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class Project(models.Model):
23
23
interest_tags = ArrayField (models .CharField (max_length = 225 ), blank = True , null = True )
24
24
skill_tags = ArrayField (models .CharField (max_length = 225 ), blank = True , null = True )
25
25
full_description = models .TextField (max_length = 2500 , blank = True , null = True )
26
- email = models .EmailField (unique = True , blank = True , null = True )
26
+ email = models .EmailField (blank = True , null = True )
27
27
other_contact = models .CharField (max_length = 225 , blank = True , null = True )
28
28
updates = ArrayField (models .CharField (max_length = 540 ), blank = True , null = True )
29
29
wanted_description = models .TextField (max_length = 2500 , blank = True , null = True )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments