Quick question: I'm trying to harden this thing:
File "/Users/meow/Library/Caches/pypoetry/virtualenvs/my-agent-0qUI9MIn-py3.10/lib/python3.10/site-packages/llama_index/core/agent/react/step.py", line 202, in _extract_reasoning_step
raise ValueError(f"Could not parse output: {message_content}") from exc
so I did this to my
pyproject.toml
:
[tool.poetry.dependencies]
llama-index = { path = "../../llama_index", develop = true }
where
../../llama_index
is where I cloned
https://github.com/run-llama/llama_index.
but I'm still seeing the traceback saying
.../site-packages/...
other than the
../../llama_index
path I'm expecting.
I usually was able to do this with
pip install -e ../../llama_index
, which I tried also and observed the same.
I think this might be due to the new file organization with
>0.10.0
? (I know I haven't been around for a while...)