namfam commited on
Commit
1bc03c8
·
verified ·
1 Parent(s): 0422d2e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
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(PROJECT_ROOT, "examples", "example_interview_audio_tts_ai_engineer.wav")
80
- MOCK_TRANSCRIPT_PATH = os.path.join(PROJECT_ROOT, "examples", "example_interview_transcipt.txt")
81
- MOCK_RESUME_PATH = os.path.join(PROJECT_ROOT, "examples", "example_resume_ai_engineer.pdf")
82
- MOCK_JD_PATH = os.path.join(PROJECT_ROOT, "examples", "example_job_description.txt")
83
- MOCK_RUBRIC_PATH = os.path.join(PROJECT_ROOT, "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
 
 
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