Find answers from the community

Updated 2 years ago

```

Plain Text
---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
Cell In[1], line 6
      1 from llama_index import (
      2     SimpleDirectoryReader,
      3     ServiceContext,
      4     LLMPredictor
      5 )
----> 6 from llama_index.experimental.evaporate import EvaporateExtractor
      7 from langchain.llms.openai import OpenAIChat, OpenAI
      8 import requests

ModuleNotFoundError: No module named 'llama_index.experimental'
L
F
5 comments
Hmmm, looks like this is a bug, llama_index/experimental is missing an __init__.py file.

If you clone the repo though and install from source using pip install -e . it seems to work fine though, very weird
ah, you're right - that's what's missing.
^nevermind, not that.
I can make a PR for this at somepoint too, or you can as well πŸ™‚ ez PR points lol
Add a reply
Sign up and join the conversation on Discord