Find answers from the community

Updated 8 months ago

I get an error while importing run_jobs

I get an error while importing run_jobs module from llamaindex I think there is an update if anyone can help or have any idea about that issue
L
É
11 comments
What is the error? Usually import errors are solved by starting with a fresh venv
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-24-a1d2b32091ce> in <cell line: 2>()
1 from llama_index.core import SimpleDirectoryReader
----> 2 from llama_index.async_utils import run_jobs
3
4
5 async def aprocess_image_file(image_file):

ModuleNotFoundError: No module named 'llama_index.async_utils'
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.

To view examples of installing some common dependencies, click the
"Open Examples" button below.
Here is the error I got @Logan M
it should be from llama_index.core.async_utils import run_jobs
Yes I think that's the same import statement that triggered that issue
You had from llama_index.async_utils import run_jobs in your traceback
It should be from llama_index.core.async_utils import run_jobs
Notice the core in there
Aah ok you are right I will test it
Thank youu so much
Add a reply
Sign up and join the conversation on Discord