File "/home/mehmet/SandBox/_git/internet-hosted/github/ANARCHY/benchllm/env/lib/python3.10/site-packages/llm_vm/completion/data_synthesis.py", line 57, in DataSynthesis
@backoff.on_exception(backoff.expo, openai.error.RateLimitError)
AttributeError: module 'openai' has no attribute 'error'
But, after manually fixing this error I ran into this error:
ModuleNotFoundError: No module named 'hnswlib'
/home/mehmet/.pyenv/versions/3.10.4/lib/python3.10/tempfile.py:837: ResourceWarning: Implicitly cleaning up <TemporaryDirectory '/tmp/tmpjo_8rwvu'>
_warnings.warn(warn_message, ResourceWarning)
I fixed this issue by installing the following package:
pip install hnswlib
We need to fix this issue. I think the root cause is because the PyPi package has not been updated.
When I install llm-vm though pip:
And I try to run something like this:
I get the following error:
:point_up: I believe this error was fixed with this PR https://github.com/anarchy-ai/LLM-VM/pull/392, so I think the issue here is maybe the PyPi package was not updated.
But, after manually fixing this error I ran into this error:
I fixed this issue by installing the following package:
We need to fix this issue. I think the root cause is because the PyPi package has not been updated.