from bert_cpp import BertModel
mod = BertModel('models/bge-base-en-v1.5-f16.gguf')
batch = ["Hello, how are you"]
emb = mod.embed(batch)
throws
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
[<ipython-input-23-145b8ed4c48e>](https://localhost:8080/#) in <cell line: 1>()
----> 1 from bert_cpp import BertModel
2 mod = BertModel('models/bge-base-en-v1.5-f16.gguf')
3 batch = ["Hello, how are you"]
4 emb = mod.embed(batch)
3 frames
[/content/bert.cpp/bert_cpp/utils.py](https://localhost:8080/#) in load_shared_library(lib_base_name)
58 raise RuntimeError(f'Failed to load shared library "{lib_path}": {e}')
59
---> 60 raise FileNotFoundError(
61 f'Shared library with base name "{lib_base_name}" not found'
62 )
FileNotFoundError: Shared library with base name "bert" not found
conversion is fine running the below
throws
I know I am missing something basic, pl advice.