diff --git a/src/agent_gsm.py b/src/agent_gsm.py index e2775c4..3ff2097 100644 --- a/src/agent_gsm.py +++ b/src/agent_gsm.py @@ -114,6 +114,7 @@ def upload_results(): # Path to audio path_audio = t[1] + print(f'Found {path_report.name} and {path_audio.name} files.') try: with open(path_report, 'rt') as f: report = json.loads(f.read()) @@ -131,7 +132,7 @@ def upload_results(): path_audio_fixed = CACHE.dir / f'{upload_id}.wav' path_audio = path_audio.rename(path_audio_fixed) - + utils.log(f'Uploading {path_report.name} and {path_audio.name} files...') # Upload recorded audio upload_result = BackendServer.upload_audio(upload_id, path_audio) if upload_result: