L7_job_application_crew: Unicode decode error in tailored_resume.md

I run this code twice.
First time it invented Brazil related names and addresses. It failed in Unicode decoding at first line.
Second time the file is better but still failed at position 1010.

display(Markdown(“./tailored_resume.md”))

UnicodeDecodeError Traceback (most recent call last)
Cell In[23], line 1
----> 1 display(Markdown(“./tailored_resume.md”))

File C:\Program Files\Python311\Lib\site-packages\IPython\core\display.py:327, in DisplayObject.init(self, data, url, filename, metadata)
324 elif self.metadata is None:
325 self.metadata = {}
→ 327 self.reload()
328 self._check_data()

File C:\Program Files\Python311\Lib\site-packages\IPython\core\display.py:354, in DisplayObject.reload(self)
352 encoding = None if “b” in self._read_flags else “utf-8”
353 with open(self.filename, self._read_flags, encoding=encoding) as f:
→ 354 self.data = f.read()
355 elif self.url is not None:
356 # Deferred import
357 from urllib.request import urlopen

File :322, in decode(self, input, final)

UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0x97 in position 1010: invalid start byte

have you downloaded all the required data to run the codes?

the error is stating as the metadata is not available, it raise self.reload, which was empty

so to run your codes, you require the metadata files with the L7 notebook

The only files I see at menu File → Open are:
L7_job_application_crew.ipynb,
fake_resume.md
utils.py
Where missing metadata files may be found?
Interesting that inverview_materials.md is displayed properly.

Did you download all these files?

I downloaded utils.py and fake_resume.md. Regarding notebook, like all previous ones, I copy it cell by cell from course page to my own notebook.
The only options for notebook in File → Open are Duplicate, Shutdown, View, Edit. Using View option, I downloaded original notebook. After running it, I will notify about results.

I run original notebook twice.
First time with 3.5-turbo: It works properly and displays taylored_resume.md correctly.
Second time with 4-turbo: It reproduces error as before.