Jekyll2000 commited on
Commit
26b1128
Β·
verified Β·
1 Parent(s): 643b1cb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -2
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/your-username/your-space-name
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
+