Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -35,7 +35,7 @@ An intelligent interview assistant that evaluates candidates using pure Retrieva
|
|
35 |
|
36 |
```bash
|
37 |
# Clone the repository
|
38 |
-
git clone https://huggingface.co/spaces/
|
39 |
cd your-space-name
|
40 |
|
41 |
# Install dependencies
|
@@ -45,4 +45,16 @@ pip install -r requirements.txt
|
|
45 |
export HUGGINGFACEHUB_API_TOKEN='your-api-token'
|
46 |
|
47 |
# Launch the app
|
48 |
-
streamlit run app.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
```bash
|
37 |
# Clone the repository
|
38 |
+
git clone https://huggingface.co/spaces/Jekyll2000/interview_agent
|
39 |
cd your-space-name
|
40 |
|
41 |
# Install dependencies
|
|
|
45 |
export HUGGINGFACEHUB_API_TOKEN='your-api-token'
|
46 |
|
47 |
# Launch the app
|
48 |
+
streamlit run app.py
|
49 |
+
|
50 |
+
interview-agent/
|
51 |
+
βββ app.py # Main application
|
52 |
+
βββ utils/
|
53 |
+
β βββ cv_processor.py # CV parsing and evaluation
|
54 |
+
β βββ rag_agent.py # Core RAG implementation
|
55 |
+
β βββ evaluator.py # Scoring logic
|
56 |
+
β βββ report_generator.py# PDF report creation
|
57 |
+
βββ data/ # Job requirements and interviews
|
58 |
+
βββ requirements.txt # Python dependencies
|
59 |
+
|
60 |
+
|