I am trying to run the labs in this course in google collab, however the following code “from helper_functions import print_llm_response” gives me this error below:
ModuleNotFoundError Traceback (most recent call last)
in <cell line: 0>() ----> 1 from helper_functions import print_llm_response
ModuleNotFoundError: No module named ‘helper_functions’
What do I need to install in google collab environment to fix this error ?
Hi @codeML,
you need to copy and paste the helper function in the collab notebook or use an import to access the helper functions, that are in the labs files.
Inside the helper function of the corresponding lab are the functions you need to use “print_llm_response” (the lab files are the document icon at the left of the blue face)