abetlen / abetlen/llama-cpp-python
OSError: exception: access violation reading 0x0000000000000000
Open
- Dominant language
- Python
- Stars
- 10.6k
- Forks
- 1.4k
- PR merge metrics
- PR metrics pending
Description
OS: Windows 10 x64
Python 3.11 x64
pandas 2.2.3
llama-cpp-python 0.3.6
```python
import pandas as pd
from llama_cpp import Llama
Llama(model_path='models/user-bge-m3-q4_k_m.gguf')
```
OSError: exception: access violation reading 0x0000000000000000

Solution: Load pandas after llama_cpp:
```python
from llama_cpp import Llama
import pandas as pd
Llama(model_path='models/user-bge-m3-q4_k_m.gguf')
```

Contributor guide
Assessment
This issue has not been assessed yet.