Spaces:
Sleeping
Sleeping
Commit ·
ba2d178
1
Parent(s): 8c1e6b5
added profile info: certificates and education, updated readme
Browse files- .DS_Store +0 -0
- readme.md +8 -0
- src/.DS_Store +0 -0
- src/__pycache__/qa_prompts.cpython-311.pyc +0 -0
- src/data_index/index.faiss +0 -0
- src/data_index/index.pkl +0 -0
- src/streamlit_app.py +1 -1
.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
readme.md
CHANGED
|
@@ -34,10 +34,18 @@ A chatbot about my profile, experience, education and skills
|
|
| 34 |
- experience letters
|
| 35 |
- project docs/ reports/ readme
|
| 36 |
- linkedin stuff: get more from linkedin csv
|
|
|
|
| 37 |
- better llm selection: using gemini for now
|
|
|
|
| 38 |
- add ui selection for gemini free models
|
| 39 |
- improve qa pipeline and prompt
|
| 40 |
- add prompt history for agent mem
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
- make router chains for better response
|
| 42 |
- add router chains for education, skills, experience and default
|
| 43 |
- UI: improve UI
|
|
|
|
| 34 |
- experience letters
|
| 35 |
- project docs/ reports/ readme
|
| 36 |
- linkedin stuff: get more from linkedin csv
|
| 37 |
+
|
| 38 |
- better llm selection: using gemini for now
|
| 39 |
+
- add option to show source document for answers
|
| 40 |
- add ui selection for gemini free models
|
| 41 |
- improve qa pipeline and prompt
|
| 42 |
- add prompt history for agent mem
|
| 43 |
+
- error handling in chat qa
|
| 44 |
+
|
| 45 |
+
- add feature to enter job description and show how well my profile aligns with it
|
| 46 |
+
|
| 47 |
+
- add sample Q/A cards
|
| 48 |
+
|
| 49 |
- make router chains for better response
|
| 50 |
- add router chains for education, skills, experience and default
|
| 51 |
- UI: improve UI
|
src/.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
src/__pycache__/qa_prompts.cpython-311.pyc
CHANGED
|
Binary files a/src/__pycache__/qa_prompts.cpython-311.pyc and b/src/__pycache__/qa_prompts.cpython-311.pyc differ
|
|
|
src/data_index/index.faiss
CHANGED
|
Binary files a/src/data_index/index.faiss and b/src/data_index/index.faiss differ
|
|
|
src/data_index/index.pkl
CHANGED
|
Binary files a/src/data_index/index.pkl and b/src/data_index/index.pkl differ
|
|
|
src/streamlit_app.py
CHANGED
|
@@ -11,7 +11,7 @@ from langchain.embeddings.base import Embeddings
|
|
| 11 |
from langchain_google_genai import ChatGoogleGenerativeAI
|
| 12 |
from huggingface_hub import InferenceClient
|
| 13 |
|
| 14 |
-
import os
|
| 15 |
from dotenv import load_dotenv
|
| 16 |
load_dotenv() # still works locally
|
| 17 |
|
|
|
|
| 11 |
from langchain_google_genai import ChatGoogleGenerativeAI
|
| 12 |
from huggingface_hub import InferenceClient
|
| 13 |
|
| 14 |
+
import os
|
| 15 |
from dotenv import load_dotenv
|
| 16 |
load_dotenv() # still works locally
|
| 17 |
|