Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -76,11 +76,11 @@ print("PROJECT_ROOT: ", PROJECT_ROOT)
|
|
| 76 |
# MOCK_TRANSCRIPT_PLACEHOLDER = "This is a placeholder for the mock transcript. It will be replaced by content from the mock file if available."
|
| 77 |
|
| 78 |
|
| 79 |
-
MOCK_AUDIO_PATH = os.path.join(
|
| 80 |
-
MOCK_TRANSCRIPT_PATH = os.path.join(
|
| 81 |
-
MOCK_RESUME_PATH = os.path.join(
|
| 82 |
-
MOCK_JD_PATH = os.path.join(
|
| 83 |
-
MOCK_RUBRIC_PATH = os.path.join(
|
| 84 |
MOCK_TRANSCRIPT_PLACEHOLDER = "This is a placeholder for the mock transcript. It will be replaced by content from the mock file if available."
|
| 85 |
|
| 86 |
|
|
|
|
| 76 |
# MOCK_TRANSCRIPT_PLACEHOLDER = "This is a placeholder for the mock transcript. It will be replaced by content from the mock file if available."
|
| 77 |
|
| 78 |
|
| 79 |
+
MOCK_AUDIO_PATH = os.path.join("examples", "example_interview_audio_tts_ai_engineer.wav")
|
| 80 |
+
MOCK_TRANSCRIPT_PATH = os.path.join("examples", "example_interview_transcipt.txt")
|
| 81 |
+
MOCK_RESUME_PATH = os.path.join("examples", "example_resume_ai_engineer.pdf")
|
| 82 |
+
MOCK_JD_PATH = os.path.join("examples", "example_job_description.txt")
|
| 83 |
+
MOCK_RUBRIC_PATH = os.path.join("examples", "example_rubric.yaml")
|
| 84 |
MOCK_TRANSCRIPT_PLACEHOLDER = "This is a placeholder for the mock transcript. It will be replaced by content from the mock file if available."
|
| 85 |
|
| 86 |
|