Spaces:
Running
Running
Merge branch 'main' of https://github.com/filiporestav/jobsai
Browse files
README.md
CHANGED
@@ -57,7 +57,7 @@ The platform uses two primary data sources:
|
|
57 |
### Workflow
|
58 |
|
59 |
1. **Flowchart of JobsAI**
|
60 |
-
[JobsAI flowchart structure](https://
|
61 |
|
62 |
2. **Data Retrieval**:
|
63 |
|
@@ -157,5 +157,3 @@ The platform uses two primary data sources:
|
|
157 |
**JobsAI** is a proof-of-concept platform that demonstrates how AI can revolutionize the job search experience. By leveraging vector embeddings and similarity search, the platform reduces inefficiencies and matches users with the most relevant job postings.
|
158 |
|
159 |
While it is functional and effective as a prototype, there are ample opportunities for enhancement, particularly in scalability and model capacity.
|
160 |
-
|
161 |
-
For a live demo, visit [**JobsAI**](https://jobsai.streamlit.app/).
|
|
|
57 |
### Workflow
|
58 |
|
59 |
1. **Flowchart of JobsAI**
|
60 |
+

|
61 |
|
62 |
2. **Data Retrieval**:
|
63 |
|
|
|
157 |
**JobsAI** is a proof-of-concept platform that demonstrates how AI can revolutionize the job search experience. By leveraging vector embeddings and similarity search, the platform reduces inefficiencies and matches users with the most relevant job postings.
|
158 |
|
159 |
While it is functional and effective as a prototype, there are ample opportunities for enhancement, particularly in scalability and model capacity.
|
|
|
|
app.py
CHANGED
@@ -214,7 +214,7 @@ def create_interface():
|
|
214 |
])
|
215 |
|
216 |
# Add final status message
|
217 |
-
updates.append("Jobs found!
|
218 |
|
219 |
return updates
|
220 |
|
@@ -265,4 +265,4 @@ def create_interface():
|
|
265 |
|
266 |
if __name__ == "__main__":
|
267 |
interface = create_interface()
|
268 |
-
interface.launch(debug=True)
|
|
|
214 |
])
|
215 |
|
216 |
# Add final status message
|
217 |
+
updates.append("Jobs found! If you decide to help us by rating them as relevant or not relevant, your CV will be uploaded to our servers and used for improving the service. ")
|
218 |
|
219 |
return updates
|
220 |
|
|
|
265 |
|
266 |
if __name__ == "__main__":
|
267 |
interface = create_interface()
|
268 |
+
interface.launch(debug=True)
|