I am trying to run the lab on Colab Pro. I have installed the folowing
!pip install crewai==0.28.8 crewai_tools==0.1.6 langchain_community==0.0.29 and
from crewai import Agent, Task, Crew
but when i try to import the next code snippet
"import os
from utils import get_openai_api_key
openai_api_key = get_openai_api_key()
os.environ[“OPENAI_MODEL_NAME”] = ‘gpt-3.5-turbo’
It gives me an error
ModuleNotFoundError Traceback (most recent call last)
in <cell line: 0>()
1 import os
----> 2 from utils import get_openai_api_key
3
4 openai_api_key = get_openai_api_key()
5 os.environ[“OPENAI_MODEL_NAME”] = ‘gpt-3.5-turbo’
ModuleNotFoundError: No module named ‘utils’
I already do have an openai_api_key installed in my colab environment.
What could be the issue?
Thanks
Hans